diff --git a/4.x/_gen/data/connect_user.libsonnet b/4.x/_gen/data/connect_user.libsonnet new file mode 100644 index 00000000..41b88609 --- /dev/null +++ b/4.x/_gen/data/connect_user.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='connect_user', url='', help='`connect_user` represents the `aws_connect_user` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.data.connect_user.new` injects a new `data_aws_connect_user` 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.connect_user.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.connect_user` using the reference:\n\n $._ref.data_aws_connect_user.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_connect_user.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block.\n - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object.\n - `user_id` (`string`): Set the `user_id` field on the resulting data source block. When `null`, the `user_id` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + new( + dataSrcLabel, + instance_id, + name=null, + tags=null, + user_id=null, + _meta={} + ):: tf.withData( + type='aws_connect_user', + label=dataSrcLabel, + attrs=self.newAttrs( + instance_id=instance_id, + name=name, + tags=tags, + user_id=user_id + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.connect_user.newAttrs` constructs a new object with attributes and blocks configured for the `connect_user`\nTerraform data source.\n\nUnlike [aws.data.connect_user.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `user_id` (`string`): Set the `user_id` field on the resulting object. When `null`, the `user_id` field will be omitted from the resulting object.\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 `connect_user` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + instance_id, + name=null, + tags=null, + user_id=null + ):: std.prune(a={ + instance_id: instance_id, + name: name, + tags: tags, + user_id: user_id, + }), + '#withInstanceId':: d.fn(help='`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the instance_id 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 `instance_id` field.\n', args=[]), + withInstanceId(dataSrcLabel, value): { + data+: { + aws_connect_user+: { + [dataSrcLabel]+: { + instance_id: 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_connect_user+: { + [dataSrcLabel]+: { + name: value, + }, + }, + }, + }, + '#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform data source block to set or update the tags field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]), + withTags(dataSrcLabel, value): { + data+: { + aws_connect_user+: { + [dataSrcLabel]+: { + tags: value, + }, + }, + }, + }, + '#withUserId':: d.fn(help='`aws.string.withUserId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the user_id 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 `user_id` field.\n', args=[]), + withUserId(dataSrcLabel, value): { + data+: { + aws_connect_user+: { + [dataSrcLabel]+: { + user_id: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/data/connect_vocabulary.libsonnet b/4.x/_gen/data/connect_vocabulary.libsonnet new file mode 100644 index 00000000..a6131600 --- /dev/null +++ b/4.x/_gen/data/connect_vocabulary.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='connect_vocabulary', url='', help='`connect_vocabulary` represents the `aws_connect_vocabulary` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.data.connect_vocabulary.new` injects a new `data_aws_connect_vocabulary` 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.connect_vocabulary.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.connect_vocabulary` using the reference:\n\n $._ref.data_aws_connect_vocabulary.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_connect_vocabulary.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block.\n - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object.\n - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting data source block. When `null`, the `vocabulary_id` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + new( + dataSrcLabel, + instance_id, + name=null, + tags=null, + vocabulary_id=null, + _meta={} + ):: tf.withData( + type='aws_connect_vocabulary', + label=dataSrcLabel, + attrs=self.newAttrs( + instance_id=instance_id, + name=name, + tags=tags, + vocabulary_id=vocabulary_id + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.connect_vocabulary.newAttrs` constructs a new object with attributes and blocks configured for the `connect_vocabulary`\nTerraform data source.\n\nUnlike [aws.data.connect_vocabulary.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting object. When `null`, the `vocabulary_id` field will be omitted from the resulting object.\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 `connect_vocabulary` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + instance_id, + name=null, + tags=null, + vocabulary_id=null + ):: std.prune(a={ + instance_id: instance_id, + name: name, + tags: tags, + vocabulary_id: vocabulary_id, + }), + '#withInstanceId':: d.fn(help='`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the instance_id 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 `instance_id` field.\n', args=[]), + withInstanceId(dataSrcLabel, value): { + data+: { + aws_connect_vocabulary+: { + [dataSrcLabel]+: { + instance_id: 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_connect_vocabulary+: { + [dataSrcLabel]+: { + name: value, + }, + }, + }, + }, + '#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform data source block to set or update the tags field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]), + withTags(dataSrcLabel, value): { + data+: { + aws_connect_vocabulary+: { + [dataSrcLabel]+: { + tags: value, + }, + }, + }, + }, + '#withVocabularyId':: d.fn(help='`aws.string.withVocabularyId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the vocabulary_id 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 `vocabulary_id` field.\n', args=[]), + withVocabularyId(dataSrcLabel, value): { + data+: { + aws_connect_vocabulary+: { + [dataSrcLabel]+: { + vocabulary_id: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/data/main.libsonnet b/4.x/_gen/data/main.libsonnet index 900cf9bb..47e27547 100644 --- a/4.x/_gen/data/main.libsonnet +++ b/4.x/_gen/data/main.libsonnet @@ -95,8 +95,10 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); connect_quick_connect: (import 'connect_quick_connect.libsonnet'), connect_routing_profile: (import 'connect_routing_profile.libsonnet'), connect_security_profile: (import 'connect_security_profile.libsonnet'), + connect_user: (import 'connect_user.libsonnet'), connect_user_hierarchy_group: (import 'connect_user_hierarchy_group.libsonnet'), connect_user_hierarchy_structure: (import 'connect_user_hierarchy_structure.libsonnet'), + connect_vocabulary: (import 'connect_vocabulary.libsonnet'), controltower_controls: (import 'controltower_controls.libsonnet'), cur_report_definition: (import 'cur_report_definition.libsonnet'), customer_gateway: (import 'customer_gateway.libsonnet'), @@ -346,6 +348,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); organizations_organizational_unit_child_accounts: (import 'organizations_organizational_unit_child_accounts.libsonnet'), organizations_organizational_unit_descendant_accounts: (import 'organizations_organizational_unit_descendant_accounts.libsonnet'), organizations_organizational_units: (import 'organizations_organizational_units.libsonnet'), + organizations_policy: (import 'organizations_policy.libsonnet'), organizations_resource_tags: (import 'organizations_resource_tags.libsonnet'), outposts_asset: (import 'outposts_asset.libsonnet'), outposts_assets: (import 'outposts_assets.libsonnet'), @@ -377,6 +380,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); redshift_service_account: (import 'redshift_service_account.libsonnet'), redshift_subnet_group: (import 'redshift_subnet_group.libsonnet'), redshiftserverless_credentials: (import 'redshiftserverless_credentials.libsonnet'), + redshiftserverless_namespace: (import 'redshiftserverless_namespace.libsonnet'), redshiftserverless_workgroup: (import 'redshiftserverless_workgroup.libsonnet'), region: (import 'region.libsonnet'), regions: (import 'regions.libsonnet'), diff --git a/4.x/_gen/data/organizations_policy.libsonnet b/4.x/_gen/data/organizations_policy.libsonnet new file mode 100644 index 00000000..76d21e0e --- /dev/null +++ b/4.x/_gen/data/organizations_policy.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='organizations_policy', url='', help='`organizations_policy` represents the `aws_organizations_policy` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.data.organizations_policy.new` injects a new `data_aws_organizations_policy` 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.organizations_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.organizations_policy` using the reference:\n\n $._ref.data_aws_organizations_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_organizations_policy.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 - `policy_id` (`string`): Set the `policy_id` field on the resulting data source block.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + new( + dataSrcLabel, + policy_id, + _meta={} + ):: tf.withData( + type='aws_organizations_policy', + label=dataSrcLabel, + attrs=self.newAttrs(policy_id=policy_id), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.organizations_policy.newAttrs` constructs a new object with attributes and blocks configured for the `organizations_policy`\nTerraform data source.\n\nUnlike [aws.data.organizations_policy.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 - `policy_id` (`string`): Set the `policy_id` field on the resulting object.\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 `organizations_policy` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + policy_id + ):: std.prune(a={ + policy_id: policy_id, + }), + '#withPolicyId':: d.fn(help='`aws.string.withPolicyId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the policy_id 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 `policy_id` field.\n', args=[]), + withPolicyId(dataSrcLabel, value): { + data+: { + aws_organizations_policy+: { + [dataSrcLabel]+: { + policy_id: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/data/redshiftserverless_namespace.libsonnet b/4.x/_gen/data/redshiftserverless_namespace.libsonnet new file mode 100644 index 00000000..743e94e0 --- /dev/null +++ b/4.x/_gen/data/redshiftserverless_namespace.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='redshiftserverless_namespace', url='', help='`redshiftserverless_namespace` represents the `aws_redshiftserverless_namespace` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.data.redshiftserverless_namespace.new` injects a new `data_aws_redshiftserverless_namespace` 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.redshiftserverless_namespace.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.redshiftserverless_namespace` using the reference:\n\n $._ref.data_aws_redshiftserverless_namespace.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_redshiftserverless_namespace.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 - `namespace_name` (`string`): Set the `namespace_name` field on the resulting data source block.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + new( + dataSrcLabel, + namespace_name, + _meta={} + ):: tf.withData( + type='aws_redshiftserverless_namespace', + label=dataSrcLabel, + attrs=self.newAttrs(namespace_name=namespace_name), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.redshiftserverless_namespace.newAttrs` constructs a new object with attributes and blocks configured for the `redshiftserverless_namespace`\nTerraform data source.\n\nUnlike [aws.data.redshiftserverless_namespace.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 - `namespace_name` (`string`): Set the `namespace_name` field on the resulting object.\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 `redshiftserverless_namespace` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + namespace_name + ):: std.prune(a={ + namespace_name: namespace_name, + }), + '#withNamespaceName':: d.fn(help='`aws.string.withNamespaceName` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the namespace_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 `namespace_name` field.\n', args=[]), + withNamespaceName(dataSrcLabel, value): { + data+: { + aws_redshiftserverless_namespace+: { + [dataSrcLabel]+: { + namespace_name: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/main.libsonnet b/4.x/_gen/main.libsonnet index 54609ae3..8f822666 100644 --- a/4.x/_gen/main.libsonnet +++ b/4.x/_gen/main.libsonnet @@ -842,7 +842,10 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); quicksight_ingestion: (import 'resources/quicksight_ingestion.libsonnet'), quicksight_namespace: (import 'resources/quicksight_namespace.libsonnet'), quicksight_refresh_schedule: (import 'resources/quicksight_refresh_schedule.libsonnet'), + quicksight_template: (import 'resources/quicksight_template.libsonnet'), + quicksight_template_alias: (import 'resources/quicksight_template_alias.libsonnet'), quicksight_user: (import 'resources/quicksight_user.libsonnet'), + quicksight_vpc_connection: (import 'resources/quicksight_vpc_connection.libsonnet'), ram_principal_association: (import 'resources/ram_principal_association.libsonnet'), ram_resource_association: (import 'resources/ram_resource_association.libsonnet'), ram_resource_share: (import 'resources/ram_resource_share.libsonnet'), diff --git a/4.x/_gen/resources/acmpca_certificate_authority.libsonnet b/4.x/_gen/resources/acmpca_certificate_authority.libsonnet index 4bc3b2c2..f2ff3351 100644 --- a/4.x/_gen/resources/acmpca_certificate_authority.libsonnet +++ b/4.x/_gen/resources/acmpca_certificate_authority.libsonnet @@ -46,11 +46,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }), }, }, - '#new':: d.fn(help="\n`aws.acmpca_certificate_authority.new` injects a new `aws_acmpca_certificate_authority` 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.acmpca_certificate_authority.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.acmpca_certificate_authority` using the reference:\n\n $._ref.aws_acmpca_certificate_authority.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_acmpca_certificate_authority.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 - `enabled` (`bool`): Set the `enabled` field on the resulting resource block. When `null`, the `enabled` field will be omitted from the resulting object.\n - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting resource block. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting resource block. When `null`, the `type` field will be omitted from the resulting object.\n - `usage_mode` (`string`): Set the `usage_mode` field on the resulting resource block. When `null`, the `usage_mode` field will be omitted from the resulting object.\n - `certificate_authority_configuration` (`list[obj]`): Set the `certificate_authority_configuration` field on the resulting resource block. When `null`, the `certificate_authority_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.certificate_authority_configuration.new](#fn-certificate_authority_configurationnew) constructor.\n - `revocation_configuration` (`list[obj]`): Set the `revocation_configuration` field on the resulting resource block. When `null`, the `revocation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.revocation_configuration.new](#fn-revocation_configurationnew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + '#new':: d.fn(help="\n`aws.acmpca_certificate_authority.new` injects a new `aws_acmpca_certificate_authority` 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.acmpca_certificate_authority.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.acmpca_certificate_authority` using the reference:\n\n $._ref.aws_acmpca_certificate_authority.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_acmpca_certificate_authority.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 - `enabled` (`bool`): Set the `enabled` field on the resulting resource block. When `null`, the `enabled` field will be omitted from the resulting object.\n - `key_storage_security_standard` (`string`): Set the `key_storage_security_standard` field on the resulting resource block. When `null`, the `key_storage_security_standard` field will be omitted from the resulting object.\n - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting resource block. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting resource block. When `null`, the `type` field will be omitted from the resulting object.\n - `usage_mode` (`string`): Set the `usage_mode` field on the resulting resource block. When `null`, the `usage_mode` field will be omitted from the resulting object.\n - `certificate_authority_configuration` (`list[obj]`): Set the `certificate_authority_configuration` field on the resulting resource block. When `null`, the `certificate_authority_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.certificate_authority_configuration.new](#fn-certificate_authority_configurationnew) constructor.\n - `revocation_configuration` (`list[obj]`): Set the `revocation_configuration` field on the resulting resource block. When `null`, the `revocation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.revocation_configuration.new](#fn-revocation_configurationnew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), new( resourceLabel, certificate_authority_configuration=null, enabled=null, + key_storage_security_standard=null, permanent_deletion_time_in_days=null, revocation_configuration=null, tags=null, @@ -65,6 +66,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); attrs=self.newAttrs( certificate_authority_configuration=certificate_authority_configuration, enabled=enabled, + key_storage_security_standard=key_storage_security_standard, permanent_deletion_time_in_days=permanent_deletion_time_in_days, revocation_configuration=revocation_configuration, tags=tags, @@ -75,10 +77,11 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.acmpca_certificate_authority.newAttrs` constructs a new object with attributes and blocks configured for the `acmpca_certificate_authority`\nTerraform resource.\n\nUnlike [aws.acmpca_certificate_authority.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 - `enabled` (`bool`): Set the `enabled` field on the resulting object. When `null`, the `enabled` field will be omitted from the resulting object.\n - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting object. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `usage_mode` (`string`): Set the `usage_mode` field on the resulting object. When `null`, the `usage_mode` field will be omitted from the resulting object.\n - `certificate_authority_configuration` (`list[obj]`): Set the `certificate_authority_configuration` field on the resulting object. When `null`, the `certificate_authority_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.certificate_authority_configuration.new](#fn-certificate_authority_configurationnew) constructor.\n - `revocation_configuration` (`list[obj]`): Set the `revocation_configuration` field on the resulting object. When `null`, the `revocation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.revocation_configuration.new](#fn-revocation_configurationnew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.timeouts.new](#fn-timeoutsnew) constructor.\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 `acmpca_certificate_authority` resource into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.acmpca_certificate_authority.newAttrs` constructs a new object with attributes and blocks configured for the `acmpca_certificate_authority`\nTerraform resource.\n\nUnlike [aws.acmpca_certificate_authority.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 - `enabled` (`bool`): Set the `enabled` field on the resulting object. When `null`, the `enabled` field will be omitted from the resulting object.\n - `key_storage_security_standard` (`string`): Set the `key_storage_security_standard` field on the resulting object. When `null`, the `key_storage_security_standard` field will be omitted from the resulting object.\n - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting object. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `usage_mode` (`string`): Set the `usage_mode` field on the resulting object. When `null`, the `usage_mode` field will be omitted from the resulting object.\n - `certificate_authority_configuration` (`list[obj]`): Set the `certificate_authority_configuration` field on the resulting object. When `null`, the `certificate_authority_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.certificate_authority_configuration.new](#fn-certificate_authority_configurationnew) constructor.\n - `revocation_configuration` (`list[obj]`): Set the `revocation_configuration` field on the resulting object. When `null`, the `revocation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.revocation_configuration.new](#fn-revocation_configurationnew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.acmpca_certificate_authority.timeouts.new](#fn-timeoutsnew) constructor.\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 `acmpca_certificate_authority` resource into the root Terraform configuration.\n', args=[]), newAttrs( certificate_authority_configuration=null, enabled=null, + key_storage_security_standard=null, permanent_deletion_time_in_days=null, revocation_configuration=null, tags=null, @@ -89,6 +92,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={ certificate_authority_configuration: certificate_authority_configuration, enabled: enabled, + key_storage_security_standard: key_storage_security_standard, permanent_deletion_time_in_days: permanent_deletion_time_in_days, revocation_configuration: revocation_configuration, tags: tags, @@ -171,6 +175,16 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, + '#withKeyStorageSecurityStandard':: d.fn(help='`aws.string.withKeyStorageSecurityStandard` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the key_storage_security_standard 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 `key_storage_security_standard` field.\n', args=[]), + withKeyStorageSecurityStandard(resourceLabel, value): { + resource+: { + aws_acmpca_certificate_authority+: { + [resourceLabel]+: { + key_storage_security_standard: value, + }, + }, + }, + }, '#withPermanentDeletionTimeInDays':: d.fn(help='`aws.number.withPermanentDeletionTimeInDays` constructs a mixin object that can be merged into the `number`\nTerraform resource block to set or update the permanent_deletion_time_in_days field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`number`): The value to set for the `permanent_deletion_time_in_days` field.\n', args=[]), withPermanentDeletionTimeInDays(resourceLabel, value): { resource+: { diff --git a/4.x/_gen/resources/cloudwatch_metric_stream.libsonnet b/4.x/_gen/resources/cloudwatch_metric_stream.libsonnet index fbc193cc..f1e40da0 100644 --- a/4.x/_gen/resources/cloudwatch_metric_stream.libsonnet +++ b/4.x/_gen/resources/cloudwatch_metric_stream.libsonnet @@ -3,18 +3,22 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); { '#':: d.pkg(name='cloudwatch_metric_stream', url='', help='`cloudwatch_metric_stream` represents the `aws_cloudwatch_metric_stream` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), exclude_filter:: { - '#new':: d.fn(help='\n`aws.cloudwatch_metric_stream.exclude_filter.new` constructs a new object with attributes and blocks configured for the `exclude_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `namespace` (`string`): Set the `namespace` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `exclude_filter` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.cloudwatch_metric_stream.exclude_filter.new` constructs a new object with attributes and blocks configured for the `exclude_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `metric_names` (`list`): Set the `metric_names` field on the resulting object. When `null`, the `metric_names` field will be omitted from the resulting object.\n - `namespace` (`string`): Set the `namespace` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `exclude_filter` sub block.\n', args=[]), new( - namespace + namespace, + metric_names=null ):: std.prune(a={ + metric_names: metric_names, namespace: namespace, }), }, include_filter:: { - '#new':: d.fn(help='\n`aws.cloudwatch_metric_stream.include_filter.new` constructs a new object with attributes and blocks configured for the `include_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `namespace` (`string`): Set the `namespace` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `include_filter` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.cloudwatch_metric_stream.include_filter.new` constructs a new object with attributes and blocks configured for the `include_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `metric_names` (`list`): Set the `metric_names` field on the resulting object. When `null`, the `metric_names` field will be omitted from the resulting object.\n - `namespace` (`string`): Set the `namespace` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `include_filter` sub block.\n', args=[]), new( - namespace + namespace, + metric_names=null ):: std.prune(a={ + metric_names: metric_names, namespace: namespace, }), }, diff --git a/4.x/_gen/resources/quicksight_data_set.libsonnet b/4.x/_gen/resources/quicksight_data_set.libsonnet index 81421870..f6d4b726 100644 --- a/4.x/_gen/resources/quicksight_data_set.libsonnet +++ b/4.x/_gen/resources/quicksight_data_set.libsonnet @@ -230,7 +230,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }), }, }, - '#new':: d.fn(help="\n`aws.quicksight_data_set.new` injects a new `aws_quicksight_data_set` 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.quicksight_data_set.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.quicksight_data_set` using the reference:\n\n $._ref.aws_quicksight_data_set.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_quicksight_data_set.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `data_set_id` (`string`): Set the `data_set_id` field on the resulting resource block.\n - `import_mode` (`string`): Set the `import_mode` field on the resulting resource block.\n - `name` (`string`): Set the `name` field on the resulting resource block.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `column_groups` (`list[obj]`): Set the `column_groups` field on the resulting resource block. When `null`, the `column_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_groups.new](#fn-column_groupsnew) constructor.\n - `column_level_permission_rules` (`list[obj]`): Set the `column_level_permission_rules` field on the resulting resource block. When `null`, the `column_level_permission_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_level_permission_rules.new](#fn-column_level_permission_rulesnew) constructor.\n - `data_set_usage_configuration` (`list[obj]`): Set the `data_set_usage_configuration` field on the resulting resource block. When `null`, the `data_set_usage_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.data_set_usage_configuration.new](#fn-data_set_usage_configurationnew) constructor.\n - `field_folders` (`list[obj]`): Set the `field_folders` field on the resulting resource block. When `null`, the `field_folders` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.field_folders.new](#fn-field_foldersnew) constructor.\n - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting resource block. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting resource block. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor.\n - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting resource block. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor.\n - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting resource block. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor.\n - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting resource block. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + '#new':: d.fn(help="\n`aws.quicksight_data_set.new` injects a new `aws_quicksight_data_set` 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.quicksight_data_set.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.quicksight_data_set` using the reference:\n\n $._ref.aws_quicksight_data_set.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_quicksight_data_set.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `data_set_id` (`string`): Set the `data_set_id` field on the resulting resource block.\n - `import_mode` (`string`): Set the `import_mode` field on the resulting resource block.\n - `name` (`string`): Set the `name` field on the resulting resource block.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `column_groups` (`list[obj]`): Set the `column_groups` field on the resulting resource block. When `null`, the `column_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_groups.new](#fn-column_groupsnew) constructor.\n - `column_level_permission_rules` (`list[obj]`): Set the `column_level_permission_rules` field on the resulting resource block. When `null`, the `column_level_permission_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_level_permission_rules.new](#fn-column_level_permission_rulesnew) constructor.\n - `data_set_usage_configuration` (`list[obj]`): Set the `data_set_usage_configuration` field on the resulting resource block. When `null`, the `data_set_usage_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.data_set_usage_configuration.new](#fn-data_set_usage_configurationnew) constructor.\n - `field_folders` (`list[obj]`): Set the `field_folders` field on the resulting resource block. When `null`, the `field_folders` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.field_folders.new](#fn-field_foldersnew) constructor.\n - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting resource block. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting resource block. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor.\n - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting resource block. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor.\n - `refresh_properties` (`list[obj]`): Set the `refresh_properties` field on the resulting resource block. When `null`, the `refresh_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.new](#fn-refresh_propertiesnew) constructor.\n - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting resource block. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor.\n - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting resource block. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), new( resourceLabel, data_set_id, @@ -244,6 +244,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); logical_table_map=null, permissions=null, physical_table_map=null, + refresh_properties=null, row_level_permission_data_set=null, row_level_permission_tag_configuration=null, tags=null, @@ -264,6 +265,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); name=name, permissions=permissions, physical_table_map=physical_table_map, + refresh_properties=refresh_properties, row_level_permission_data_set=row_level_permission_data_set, row_level_permission_tag_configuration=row_level_permission_tag_configuration, tags=tags, @@ -271,7 +273,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.quicksight_data_set.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_data_set`\nTerraform resource.\n\nUnlike [aws.quicksight_data_set.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `data_set_id` (`string`): Set the `data_set_id` field on the resulting object.\n - `import_mode` (`string`): Set the `import_mode` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `column_groups` (`list[obj]`): Set the `column_groups` field on the resulting object. When `null`, the `column_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_groups.new](#fn-column_groupsnew) constructor.\n - `column_level_permission_rules` (`list[obj]`): Set the `column_level_permission_rules` field on the resulting object. When `null`, the `column_level_permission_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_level_permission_rules.new](#fn-column_level_permission_rulesnew) constructor.\n - `data_set_usage_configuration` (`list[obj]`): Set the `data_set_usage_configuration` field on the resulting object. When `null`, the `data_set_usage_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.data_set_usage_configuration.new](#fn-data_set_usage_configurationnew) constructor.\n - `field_folders` (`list[obj]`): Set the `field_folders` field on the resulting object. When `null`, the `field_folders` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.field_folders.new](#fn-field_foldersnew) constructor.\n - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting object. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting object. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor.\n - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting object. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor.\n - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting object. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor.\n - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting object. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor.\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 `quicksight_data_set` resource into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.quicksight_data_set.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_data_set`\nTerraform resource.\n\nUnlike [aws.quicksight_data_set.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `data_set_id` (`string`): Set the `data_set_id` field on the resulting object.\n - `import_mode` (`string`): Set the `import_mode` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `column_groups` (`list[obj]`): Set the `column_groups` field on the resulting object. When `null`, the `column_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_groups.new](#fn-column_groupsnew) constructor.\n - `column_level_permission_rules` (`list[obj]`): Set the `column_level_permission_rules` field on the resulting object. When `null`, the `column_level_permission_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.column_level_permission_rules.new](#fn-column_level_permission_rulesnew) constructor.\n - `data_set_usage_configuration` (`list[obj]`): Set the `data_set_usage_configuration` field on the resulting object. When `null`, the `data_set_usage_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.data_set_usage_configuration.new](#fn-data_set_usage_configurationnew) constructor.\n - `field_folders` (`list[obj]`): Set the `field_folders` field on the resulting object. When `null`, the `field_folders` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.field_folders.new](#fn-field_foldersnew) constructor.\n - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting object. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting object. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor.\n - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting object. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor.\n - `refresh_properties` (`list[obj]`): Set the `refresh_properties` field on the resulting object. When `null`, the `refresh_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.new](#fn-refresh_propertiesnew) constructor.\n - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting object. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor.\n - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting object. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor.\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 `quicksight_data_set` resource into the root Terraform configuration.\n', args=[]), newAttrs( data_set_id, import_mode, @@ -284,6 +286,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); logical_table_map=null, permissions=null, physical_table_map=null, + refresh_properties=null, row_level_permission_data_set=null, row_level_permission_tag_configuration=null, tags=null, @@ -300,6 +303,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); name: name, permissions: permissions, physical_table_map: physical_table_map, + refresh_properties: refresh_properties, row_level_permission_data_set: row_level_permission_data_set, row_level_permission_tag_configuration: row_level_permission_tag_configuration, tags: tags, @@ -417,6 +421,42 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, + refresh_properties:: { + '#new':: d.fn(help='\n`aws.quicksight_data_set.refresh_properties.new` constructs a new object with attributes and blocks configured for the `refresh_properties`\nTerraform sub block.\n\n\n\n**Args**:\n - `refresh_configuration` (`list[obj]`): Set the `refresh_configuration` field on the resulting object. When `null`, the `refresh_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.new](#fn-refresh_propertiesrefresh_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `refresh_properties` sub block.\n', args=[]), + new( + refresh_configuration=null + ):: std.prune(a={ + refresh_configuration: refresh_configuration, + }), + refresh_configuration:: { + incremental_refresh:: { + lookback_window:: { + '#new':: d.fn(help='\n`aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.lookback_window.new` constructs a new object with attributes and blocks configured for the `lookback_window`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `size` (`number`): Set the `size` field on the resulting object.\n - `size_unit` (`string`): Set the `size_unit` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `lookback_window` sub block.\n', args=[]), + new( + column_name, + size, + size_unit + ):: std.prune(a={ + column_name: column_name, + size: size, + size_unit: size_unit, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.new` constructs a new object with attributes and blocks configured for the `incremental_refresh`\nTerraform sub block.\n\n\n\n**Args**:\n - `lookback_window` (`list[obj]`): Set the `lookback_window` field on the resulting object. When `null`, the `lookback_window` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.lookback_window.new](#fn-refresh_propertiesrefresh_propertiesrefresh_configurationlookback_windownew) constructor.\n\n**Returns**:\n - An attribute object that represents the `incremental_refresh` sub block.\n', args=[]), + new( + lookback_window=null + ):: std.prune(a={ + lookback_window: lookback_window, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_data_set.refresh_properties.refresh_configuration.new` constructs a new object with attributes and blocks configured for the `refresh_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `incremental_refresh` (`list[obj]`): Set the `incremental_refresh` field on the resulting object. When `null`, the `incremental_refresh` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.new](#fn-refresh_propertiesrefresh_propertiesincremental_refreshnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `refresh_configuration` sub block.\n', args=[]), + new( + incremental_refresh=null + ):: std.prune(a={ + incremental_refresh: incremental_refresh, + }), + }, + }, row_level_permission_data_set:: { '#new':: d.fn(help='\n`aws.quicksight_data_set.row_level_permission_data_set.new` constructs a new object with attributes and blocks configured for the `row_level_permission_data_set`\nTerraform sub block.\n\n\n\n**Args**:\n - `arn` (`string`): Set the `arn` field on the resulting object.\n - `format_version` (`string`): Set the `format_version` field on the resulting object. When `null`, the `format_version` field will be omitted from the resulting object.\n - `namespace` (`string`): Set the `namespace` field on the resulting object. When `null`, the `namespace` field will be omitted from the resulting object.\n - `permission_policy` (`string`): Set the `permission_policy` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `row_level_permission_data_set` sub block.\n', args=[]), new( @@ -637,6 +677,26 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, + '#withRefreshProperties':: d.fn(help='`aws.list[obj].withRefreshProperties` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the refresh_properties 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].withRefreshPropertiesMixin](TODO) function.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `refresh_properties` field.\n', args=[]), + withRefreshProperties(resourceLabel, value): { + resource+: { + aws_quicksight_data_set+: { + [resourceLabel]+: { + refresh_properties: value, + }, + }, + }, + }, + '#withRefreshPropertiesMixin':: d.fn(help='`aws.list[obj].withRefreshPropertiesMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the refresh_properties 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].withRefreshProperties](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `refresh_properties` field.\n', args=[]), + withRefreshPropertiesMixin(resourceLabel, value): { + resource+: { + aws_quicksight_data_set+: { + [resourceLabel]+: { + refresh_properties+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, '#withRowLevelPermissionDataSet':: d.fn(help='`aws.list[obj].withRowLevelPermissionDataSet` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the row_level_permission_data_set 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].withRowLevelPermissionDataSetMixin](TODO) function.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `row_level_permission_data_set` field.\n', args=[]), withRowLevelPermissionDataSet(resourceLabel, value): { resource+: { diff --git a/4.x/_gen/resources/quicksight_template.libsonnet b/4.x/_gen/resources/quicksight_template.libsonnet new file mode 100644 index 00000000..132d090a --- /dev/null +++ b/4.x/_gen/resources/quicksight_template.libsonnet @@ -0,0 +1,93626 @@ +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='quicksight_template', url='', help='`quicksight_template` represents the `aws_quicksight_template` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + definition:: { + analysis_defaults:: { + default_new_sheet_configuration:: { + interactive_layout_configuration:: { + free_form:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formscreen_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + screen_canvas_size_options=null + ):: std.prune(a={ + screen_canvas_size_options: screen_canvas_size_options, + }), + screen_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `screen_canvas_size_options` sub block.\n', args=[]), + new( + optimized_view_port_width + ):: std.prune(a={ + optimized_view_port_width: optimized_view_port_width, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.new` constructs a new object with attributes and blocks configured for the `free_form`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationcanvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `free_form` sub block.\n', args=[]), + new( + canvas_size_options=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + }), + }, + grid:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridscreen_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + screen_canvas_size_options=null + ):: std.prune(a={ + screen_canvas_size_options: screen_canvas_size_options, + }), + screen_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. When `null`, the `optimized_view_port_width` field will be omitted from the resulting object.\n - `resize_option` (`string`): Set the `resize_option` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `screen_canvas_size_options` sub block.\n', args=[]), + new( + resize_option, + optimized_view_port_width=null + ):: std.prune(a={ + optimized_view_port_width: optimized_view_port_width, + resize_option: resize_option, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.new` constructs a new object with attributes and blocks configured for the `grid`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationcanvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `grid` sub block.\n', args=[]), + new( + canvas_size_options=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.new` constructs a new object with attributes and blocks configured for the `interactive_layout_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `free_form` (`list[obj]`): Set the `free_form` field on the resulting object. When `null`, the `free_form` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationfree_formnew) constructor.\n - `grid` (`list[obj]`): Set the `grid` field on the resulting object. When `null`, the `grid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationgridnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `interactive_layout_configuration` sub block.\n', args=[]), + new( + free_form=null, + grid=null + ):: std.prune(a={ + free_form: free_form, + grid: grid, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.new` constructs a new object with attributes and blocks configured for the `default_new_sheet_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `sheet_content_type` (`string`): Set the `sheet_content_type` field on the resulting object. When `null`, the `sheet_content_type` field will be omitted from the resulting object.\n - `interactive_layout_configuration` (`list[obj]`): Set the `interactive_layout_configuration` field on the resulting object. When `null`, the `interactive_layout_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.new](#fn-definitiondefinitionanalysis_defaultsinteractive_layout_configurationnew) constructor.\n - `paginated_layout_configuration` (`list[obj]`): Set the `paginated_layout_configuration` field on the resulting object. When `null`, the `paginated_layout_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.new](#fn-definitiondefinitionanalysis_defaultspaginated_layout_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_new_sheet_configuration` sub block.\n', args=[]), + new( + interactive_layout_configuration=null, + paginated_layout_configuration=null, + sheet_content_type=null + ):: std.prune(a={ + interactive_layout_configuration: interactive_layout_configuration, + paginated_layout_configuration: paginated_layout_configuration, + sheet_content_type: sheet_content_type, + }), + paginated_layout_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.new` constructs a new object with attributes and blocks configured for the `paginated_layout_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `section_based` (`list[obj]`): Set the `section_based` field on the resulting object. When `null`, the `section_based` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationsection_basednew) constructor.\n\n**Returns**:\n - An attribute object that represents the `paginated_layout_configuration` sub block.\n', args=[]), + new( + section_based=null + ):: std.prune(a={ + section_based: section_based, + }), + section_based:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `paper_canvas_size_options` (`list[obj]`): Set the `paper_canvas_size_options` field on the resulting object. When `null`, the `paper_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedpaper_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + paper_canvas_size_options=null + ):: std.prune(a={ + paper_canvas_size_options: paper_canvas_size_options, + }), + paper_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `paper_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `paper_orientation` (`string`): Set the `paper_orientation` field on the resulting object. When `null`, the `paper_orientation` field will be omitted from the resulting object.\n - `paper_size` (`string`): Set the `paper_size` field on the resulting object. When `null`, the `paper_size` field will be omitted from the resulting object.\n - `paper_margin` (`list[obj]`): Set the `paper_margin` field on the resulting object. When `null`, the `paper_margin` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_marginnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `paper_canvas_size_options` sub block.\n', args=[]), + new( + paper_margin=null, + paper_orientation=null, + paper_size=null + ):: std.prune(a={ + paper_margin: paper_margin, + paper_orientation: paper_orientation, + paper_size: paper_size, + }), + paper_margin:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin.new` constructs a new object with attributes and blocks configured for the `paper_margin`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object.\n - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object.\n - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object.\n - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `paper_margin` sub block.\n', args=[]), + new( + bottom=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + left: left, + right: right, + top: top, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.new` constructs a new object with attributes and blocks configured for the `section_based`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationcanvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `section_based` sub block.\n', args=[]), + new( + canvas_size_options=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.analysis_defaults.new` constructs a new object with attributes and blocks configured for the `analysis_defaults`\nTerraform sub block.\n\n\n\n**Args**:\n - `default_new_sheet_configuration` (`list[obj]`): Set the `default_new_sheet_configuration` field on the resulting object. When `null`, the `default_new_sheet_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.new](#fn-definitiondefinitiondefault_new_sheet_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `analysis_defaults` sub block.\n', args=[]), + new( + default_new_sheet_configuration=null + ):: std.prune(a={ + default_new_sheet_configuration: default_new_sheet_configuration, + }), + }, + calculated_fields:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.calculated_fields.new` constructs a new object with attributes and blocks configured for the `calculated_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_fields` sub block.\n', args=[]), + new( + data_set_identifier, + expression, + name + ):: std.prune(a={ + data_set_identifier: data_set_identifier, + expression: expression, + name: name, + }), + }, + column_configurations:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + date_time_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.new` constructs a new object with attributes and blocks configured for the `date_time_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format_configuration` (`list[obj]`): Set the `date_time_format_configuration` field on the resulting object. When `null`, the `date_time_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsdate_time_format_configurationnew) constructor.\n - `number_format_configuration` (`list[obj]`): Set the `number_format_configuration` field on the resulting object. When `null`, the `number_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsnumber_format_configurationnew) constructor.\n - `string_format_configuration` (`list[obj]`): Set the `string_format_configuration` field on the resulting object. When `null`, the `string_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsstring_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format_configuration=null, + number_format_configuration=null, + string_format_configuration=null + ):: std.prune(a={ + date_time_format_configuration: date_time_format_configuration, + number_format_configuration: number_format_configuration, + string_format_configuration: string_format_configuration, + }), + number_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + string_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.new` constructs a new object with attributes and blocks configured for the `string_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `string_format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.column_configurations.new` constructs a new object with attributes and blocks configured for the `column_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `role` (`string`): Set the `role` field on the resulting object. When `null`, the `role` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.column.new](#fn-definitiondefinitioncolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.new](#fn-definitiondefinitionformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_configurations` sub block.\n', args=[]), + new( + column=null, + format_configuration=null, + role=null + ):: std.prune(a={ + column: column, + format_configuration: format_configuration, + role: role, + }), + }, + data_set_configuration:: { + column_group_schema_list:: { + column_group_column_schema_list:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list.new` constructs a new object with attributes and blocks configured for the `column_group_column_schema_list`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_group_column_schema_list` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.new` constructs a new object with attributes and blocks configured for the `column_group_schema_list`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `column_group_column_schema_list` (`list[obj]`): Set the `column_group_column_schema_list` field on the resulting object. When `null`, the `column_group_column_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list.new](#fn-definitiondefinitiondata_set_configurationcolumn_group_column_schema_listnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_group_schema_list` sub block.\n', args=[]), + new( + column_group_column_schema_list=null, + name=null + ):: std.prune(a={ + column_group_column_schema_list: column_group_column_schema_list, + name: name, + }), + }, + data_set_schema:: { + column_schema_list:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.data_set_configuration.data_set_schema.column_schema_list.new` constructs a new object with attributes and blocks configured for the `column_schema_list`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_type` (`string`): Set the `data_type` field on the resulting object. When `null`, the `data_type` field will be omitted from the resulting object.\n - `geographic_role` (`string`): Set the `geographic_role` field on the resulting object. When `null`, the `geographic_role` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_schema_list` sub block.\n', args=[]), + new( + data_type=null, + geographic_role=null, + name=null + ):: std.prune(a={ + data_type: data_type, + geographic_role: geographic_role, + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.data_set_configuration.data_set_schema.new` constructs a new object with attributes and blocks configured for the `data_set_schema`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_schema_list` (`list[obj]`): Set the `column_schema_list` field on the resulting object. When `null`, the `column_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.data_set_schema.column_schema_list.new](#fn-definitiondefinitiondata_set_configurationcolumn_schema_listnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_set_schema` sub block.\n', args=[]), + new( + column_schema_list=null + ):: std.prune(a={ + column_schema_list: column_schema_list, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.data_set_configuration.new` constructs a new object with attributes and blocks configured for the `data_set_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `placeholder` (`string`): Set the `placeholder` field on the resulting object. When `null`, the `placeholder` field will be omitted from the resulting object.\n - `column_group_schema_list` (`list[obj]`): Set the `column_group_schema_list` field on the resulting object. When `null`, the `column_group_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.new](#fn-definitiondefinitioncolumn_group_schema_listnew) constructor.\n - `data_set_schema` (`list[obj]`): Set the `data_set_schema` field on the resulting object. When `null`, the `data_set_schema` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.data_set_schema.new](#fn-definitiondefinitiondata_set_schemanew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_set_configuration` sub block.\n', args=[]), + new( + column_group_schema_list=null, + data_set_schema=null, + placeholder=null + ):: std.prune(a={ + column_group_schema_list: column_group_schema_list, + data_set_schema: data_set_schema, + placeholder: placeholder, + }), + }, + filter_groups:: { + filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + configuration:: { + custom_filter_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration.new` constructs a new object with attributes and blocks configured for the `custom_filter_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_value` (`string`): Set the `category_value` field on the resulting object. When `null`, the `category_value` field will be omitted from the resulting object.\n - `match_operator` (`string`): Set the `match_operator` field on the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_filter_configuration` sub block.\n', args=[]), + new( + match_operator, + null_option, + category_value=null, + parameter_name=null, + select_all_options=null + ):: std.prune(a={ + category_value: category_value, + match_operator: match_operator, + null_option: null_option, + parameter_name: parameter_name, + select_all_options: select_all_options, + }), + }, + custom_filter_list_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration.new` constructs a new object with attributes and blocks configured for the `custom_filter_list_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object. When `null`, the `category_values` field will be omitted from the resulting object.\n - `match_operator` (`string`): Set the `match_operator` field on the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_filter_list_configuration` sub block.\n', args=[]), + new( + match_operator, + null_option, + category_values=null, + select_all_options=null + ):: std.prune(a={ + category_values: category_values, + match_operator: match_operator, + null_option: null_option, + select_all_options: select_all_options, + }), + }, + filter_list_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.filter_list_configuration.new` constructs a new object with attributes and blocks configured for the `filter_list_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object. When `null`, the `category_values` field will be omitted from the resulting object.\n - `match_operator` (`string`): Set the `match_operator` field on the resulting object.\n - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `filter_list_configuration` sub block.\n', args=[]), + new( + match_operator, + category_values=null, + select_all_options=null + ):: std.prune(a={ + category_values: category_values, + match_operator: match_operator, + select_all_options: select_all_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.new` constructs a new object with attributes and blocks configured for the `configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_filter_configuration` (`list[obj]`): Set the `custom_filter_configuration` field on the resulting object. When `null`, the `custom_filter_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filtercustom_filter_configurationnew) constructor.\n - `custom_filter_list_configuration` (`list[obj]`): Set the `custom_filter_list_configuration` field on the resulting object. When `null`, the `custom_filter_list_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filtercustom_filter_list_configurationnew) constructor.\n - `filter_list_configuration` (`list[obj]`): Set the `filter_list_configuration` field on the resulting object. When `null`, the `filter_list_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.filter_list_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filterfilter_list_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `configuration` sub block.\n', args=[]), + new( + custom_filter_configuration=null, + custom_filter_list_configuration=null, + filter_list_configuration=null + ):: std.prune(a={ + custom_filter_configuration: custom_filter_configuration, + custom_filter_list_configuration: custom_filter_list_configuration, + filter_list_configuration: filter_list_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.new](#fn-definitiondefinitionfilter_groupsfiltersconfigurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + filter_id, + column=null, + configuration=null + ):: std.prune(a={ + column: column, + configuration: configuration, + filter_id: filter_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.new` constructs a new object with attributes and blocks configured for the `filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.new](#fn-definitiondefinitionfilter_groupscategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.new](#fn-definitiondefinitionfilter_groupsnumeric_equality_filternew) constructor.\n - `numeric_range_filter` (`list[obj]`): Set the `numeric_range_filter` field on the resulting object. When `null`, the `numeric_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.new](#fn-definitiondefinitionfilter_groupsnumeric_range_filternew) constructor.\n - `relative_dates_filter` (`list[obj]`): Set the `relative_dates_filter` field on the resulting object. When `null`, the `relative_dates_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.new](#fn-definitiondefinitionfilter_groupsrelative_dates_filternew) constructor.\n - `time_equality_filter` (`list[obj]`): Set the `time_equality_filter` field on the resulting object. When `null`, the `time_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.new](#fn-definitiondefinitionfilter_groupstime_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.new](#fn-definitiondefinitionfilter_groupstime_range_filternew) constructor.\n - `top_bottom_filter` (`list[obj]`): Set the `top_bottom_filter` field on the resulting object. When `null`, the `top_bottom_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.new](#fn-definitiondefinitionfilter_groupstop_bottom_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + numeric_range_filter=null, + relative_dates_filter=null, + time_equality_filter=null, + time_range_filter=null, + top_bottom_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + numeric_range_filter: numeric_range_filter, + relative_dates_filter: relative_dates_filter, + time_equality_filter: time_equality_filter, + time_range_filter: time_range_filter, + top_bottom_filter: top_bottom_filter, + }), + numeric_equality_filter:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_equality_filternumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `match_operator` (`string`): Set the `match_operator` field on the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object.\n - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + filter_id, + match_operator, + null_option, + aggregation_function=null, + column=null, + parameter_name=null, + select_all_options=null, + value=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + filter_id: filter_id, + match_operator: match_operator, + null_option: null_option, + parameter_name: parameter_name, + select_all_options: select_all_options, + value: value, + }), + }, + numeric_range_filter:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_range_filternumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_range_filteraggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.new` constructs a new object with attributes and blocks configured for the `numeric_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `include_maximum` (`bool`): Set the `include_maximum` field on the resulting object. When `null`, the `include_maximum` field will be omitted from the resulting object.\n - `include_minimum` (`bool`): Set the `include_minimum` field on the resulting object. When `null`, the `include_minimum` field will be omitted from the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n - `range_maximum` (`list[obj]`): Set the `range_maximum` field on the resulting object. When `null`, the `range_maximum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_maximum.new](#fn-definitiondefinitionfilter_groupsfiltersrange_maximumnew) constructor.\n - `range_minimum` (`list[obj]`): Set the `range_minimum` field on the resulting object. When `null`, the `range_minimum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_minimum.new](#fn-definitiondefinitionfilter_groupsfiltersrange_minimumnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_range_filter` sub block.\n', args=[]), + new( + filter_id, + null_option, + aggregation_function=null, + column=null, + include_maximum=null, + include_minimum=null, + range_maximum=null, + range_minimum=null, + select_all_options=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + filter_id: filter_id, + include_maximum: include_maximum, + include_minimum: include_minimum, + null_option: null_option, + range_maximum: range_maximum, + range_minimum: range_minimum, + select_all_options: select_all_options, + }), + range_maximum:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_maximum.new` constructs a new object with attributes and blocks configured for the `range_maximum`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object.\n - `static_value` (`number`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_maximum` sub block.\n', args=[]), + new( + parameter=null, + static_value=null + ):: std.prune(a={ + parameter: parameter, + static_value: static_value, + }), + }, + range_minimum:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_minimum.new` constructs a new object with attributes and blocks configured for the `range_minimum`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object.\n - `static_value` (`number`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_minimum` sub block.\n', args=[]), + new( + parameter=null, + static_value=null + ):: std.prune(a={ + parameter: parameter, + static_value: static_value, + }), + }, + }, + relative_dates_filter:: { + anchor_date_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration.new` constructs a new object with attributes and blocks configured for the `anchor_date_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `anchor_option` (`string`): Set the `anchor_option` field on the resulting object. When `null`, the `anchor_option` field will be omitted from the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `anchor_date_configuration` sub block.\n', args=[]), + new( + anchor_option=null, + parameter_name=null + ):: std.prune(a={ + anchor_option: anchor_option, + parameter_name: parameter_name, + }), + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + exclude_period_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration.new` constructs a new object with attributes and blocks configured for the `exclude_period_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `amount` (`number`): Set the `amount` field on the resulting object.\n - `granularity` (`string`): Set the `granularity` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `exclude_period_configuration` sub block.\n', args=[]), + new( + amount, + granularity, + status=null + ):: std.prune(a={ + amount: amount, + granularity: granularity, + status: status, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.new` constructs a new object with attributes and blocks configured for the `relative_dates_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `minimum_granularity` (`string`): Set the `minimum_granularity` field on the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n - `relative_date_type` (`string`): Set the `relative_date_type` field on the resulting object.\n - `relative_date_value` (`number`): Set the `relative_date_value` field on the resulting object. When `null`, the `relative_date_value` field will be omitted from the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `anchor_date_configuration` (`list[obj]`): Set the `anchor_date_configuration` field on the resulting object. When `null`, the `anchor_date_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersanchor_date_configurationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n - `exclude_period_configuration` (`list[obj]`): Set the `exclude_period_configuration` field on the resulting object. When `null`, the `exclude_period_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersexclude_period_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `relative_dates_filter` sub block.\n', args=[]), + new( + filter_id, + minimum_granularity, + null_option, + relative_date_type, + time_granularity, + anchor_date_configuration=null, + column=null, + exclude_period_configuration=null, + parameter_name=null, + relative_date_value=null + ):: std.prune(a={ + anchor_date_configuration: anchor_date_configuration, + column: column, + exclude_period_configuration: exclude_period_configuration, + filter_id: filter_id, + minimum_granularity: minimum_granularity, + null_option: null_option, + parameter_name: parameter_name, + relative_date_type: relative_date_type, + relative_date_value: relative_date_value, + time_granularity: time_granularity, + }), + }, + time_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.new` constructs a new object with attributes and blocks configured for the `time_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_equality_filter` sub block.\n', args=[]), + new( + filter_id, + time_granularity, + column=null, + parameter_name=null, + value=null + ):: std.prune(a={ + column: column, + filter_id: filter_id, + parameter_name: parameter_name, + time_granularity: time_granularity, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + exclude_period_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.exclude_period_configuration.new` constructs a new object with attributes and blocks configured for the `exclude_period_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `amount` (`number`): Set the `amount` field on the resulting object.\n - `granularity` (`string`): Set the `granularity` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `exclude_period_configuration` sub block.\n', args=[]), + new( + amount, + granularity, + status=null + ):: std.prune(a={ + amount: amount, + granularity: granularity, + status: status, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `include_maximum` (`bool`): Set the `include_maximum` field on the resulting object. When `null`, the `include_maximum` field will be omitted from the resulting object.\n - `include_minimum` (`bool`): Set the `include_minimum` field on the resulting object. When `null`, the `include_minimum` field will be omitted from the resulting object.\n - `null_option` (`string`): Set the `null_option` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n - `exclude_period_configuration` (`list[obj]`): Set the `exclude_period_configuration` field on the resulting object. When `null`, the `exclude_period_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.exclude_period_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersexclude_period_configurationnew) constructor.\n - `range_maximum_value` (`list[obj]`): Set the `range_maximum_value` field on the resulting object. When `null`, the `range_maximum_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.new](#fn-definitiondefinitionfilter_groupsfiltersrange_maximum_valuenew) constructor.\n - `range_minimum_value` (`list[obj]`): Set the `range_minimum_value` field on the resulting object. When `null`, the `range_minimum_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.new](#fn-definitiondefinitionfilter_groupsfiltersrange_minimum_valuenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + filter_id, + null_option, + time_granularity, + column=null, + exclude_period_configuration=null, + include_maximum=null, + include_minimum=null, + range_maximum_value=null, + range_minimum_value=null + ):: std.prune(a={ + column: column, + exclude_period_configuration: exclude_period_configuration, + filter_id: filter_id, + include_maximum: include_maximum, + include_minimum: include_minimum, + null_option: null_option, + range_maximum_value: range_maximum_value, + range_minimum_value: range_minimum_value, + time_granularity: time_granularity, + }), + range_maximum_value:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.new` constructs a new object with attributes and blocks configured for the `range_maximum_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object.\n - `static_value` (`string`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object.\n - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date.new](#fn-definitiondefinitionfilter_groupsfilterstime_range_filterrolling_datenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range_maximum_value` sub block.\n', args=[]), + new( + parameter=null, + rolling_date=null, + static_value=null + ):: std.prune(a={ + parameter: parameter, + rolling_date: rolling_date, + static_value: static_value, + }), + rolling_date:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `rolling_date` sub block.\n', args=[]), + new( + expression, + data_set_identifier=null + ):: std.prune(a={ + data_set_identifier: data_set_identifier, + expression: expression, + }), + }, + }, + range_minimum_value:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.new` constructs a new object with attributes and blocks configured for the `range_minimum_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object.\n - `static_value` (`string`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object.\n - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date.new](#fn-definitiondefinitionfilter_groupsfilterstime_range_filterrolling_datenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range_minimum_value` sub block.\n', args=[]), + new( + parameter=null, + rolling_date=null, + static_value=null + ):: std.prune(a={ + parameter: parameter, + rolling_date: rolling_date, + static_value: static_value, + }), + rolling_date:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `rolling_date` sub block.\n', args=[]), + new( + expression, + data_set_identifier=null + ):: std.prune(a={ + data_set_identifier: data_set_identifier, + expression: expression, + }), + }, + }, + }, + top_bottom_filter:: { + aggregation_sort_configuration:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.new` constructs a new object with attributes and blocks configured for the `aggregation_sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_direction` (`string`): Set the `sort_direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filtercolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_sort_configuration` sub block.\n', args=[]), + new( + sort_direction, + aggregation_function=null, + column=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + sort_direction: sort_direction, + }), + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.new` constructs a new object with attributes and blocks configured for the `top_bottom_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_id` (`string`): Set the `filter_id` field on the resulting object.\n - `limit` (`number`): Set the `limit` field on the resulting object. When `null`, the `limit` field will be omitted from the resulting object.\n - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `aggregation_sort_configuration` (`list[obj]`): Set the `aggregation_sort_configuration` field on the resulting object. When `null`, the `aggregation_sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_sort_configurationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `top_bottom_filter` sub block.\n', args=[]), + new( + filter_id, + time_granularity, + aggregation_sort_configuration=null, + column=null, + limit=null, + parameter_name=null + ):: std.prune(a={ + aggregation_sort_configuration: aggregation_sort_configuration, + column: column, + filter_id: filter_id, + limit: limit, + parameter_name: parameter_name, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.new` constructs a new object with attributes and blocks configured for the `filter_groups`\nTerraform sub block.\n\n\n\n**Args**:\n - `cross_dataset` (`string`): Set the `cross_dataset` field on the resulting object.\n - `filter_group_id` (`string`): Set the `filter_group_id` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n - `filters` (`list[obj]`): Set the `filters` field on the resulting object. When `null`, the `filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.new](#fn-definitiondefinitionfiltersnew) constructor.\n - `scope_configuration` (`list[obj]`): Set the `scope_configuration` field on the resulting object. When `null`, the `scope_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.new](#fn-definitiondefinitionscope_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_groups` sub block.\n', args=[]), + new( + cross_dataset, + filter_group_id, + filters=null, + scope_configuration=null, + status=null + ):: std.prune(a={ + cross_dataset: cross_dataset, + filter_group_id: filter_group_id, + filters: filters, + scope_configuration: scope_configuration, + status: status, + }), + scope_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.scope_configuration.new` constructs a new object with attributes and blocks configured for the `scope_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_sheets` (`list[obj]`): Set the `selected_sheets` field on the resulting object. When `null`, the `selected_sheets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.new](#fn-definitiondefinitionfilter_groupsselected_sheetsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scope_configuration` sub block.\n', args=[]), + new( + selected_sheets=null + ):: std.prune(a={ + selected_sheets: selected_sheets, + }), + selected_sheets:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.new` constructs a new object with attributes and blocks configured for the `selected_sheets`\nTerraform sub block.\n\n\n\n**Args**:\n - `sheet_visual_scoping_configurations` (`list[obj]`): Set the `sheet_visual_scoping_configurations` field on the resulting object. When `null`, the `sheet_visual_scoping_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations.new](#fn-definitiondefinitionfilter_groupsscope_configurationsheet_visual_scoping_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `selected_sheets` sub block.\n', args=[]), + new( + sheet_visual_scoping_configurations=null + ):: std.prune(a={ + sheet_visual_scoping_configurations: sheet_visual_scoping_configurations, + }), + sheet_visual_scoping_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations.new` constructs a new object with attributes and blocks configured for the `sheet_visual_scoping_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `scope` (`string`): Set the `scope` field on the resulting object.\n - `sheet_id` (`string`): Set the `sheet_id` field on the resulting object.\n - `visual_ids` (`list`): Set the `visual_ids` field on the resulting object. When `null`, the `visual_ids` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sheet_visual_scoping_configurations` sub block.\n', args=[]), + new( + scope, + sheet_id, + visual_ids=null + ):: std.prune(a={ + scope: scope, + sheet_id: sheet_id, + visual_ids: visual_ids, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.new` constructs a new object with attributes and blocks configured for the `definition`\nTerraform sub block.\n\n\n\n**Args**:\n - `analysis_defaults` (`list[obj]`): Set the `analysis_defaults` field on the resulting object. When `null`, the `analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.new](#fn-definitionanalysis_defaultsnew) constructor.\n - `calculated_fields` (`list[obj]`): Set the `calculated_fields` field on the resulting object. When `null`, the `calculated_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.calculated_fields.new](#fn-definitioncalculated_fieldsnew) constructor.\n - `column_configurations` (`list[obj]`): Set the `column_configurations` field on the resulting object. When `null`, the `column_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.new](#fn-definitioncolumn_configurationsnew) constructor.\n - `data_set_configuration` (`list[obj]`): Set the `data_set_configuration` field on the resulting object. When `null`, the `data_set_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.new](#fn-definitiondata_set_configurationnew) constructor.\n - `filter_groups` (`list[obj]`): Set the `filter_groups` field on the resulting object. When `null`, the `filter_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.new](#fn-definitionfilter_groupsnew) constructor.\n - `parameters_declarations` (`list[obj]`): Set the `parameters_declarations` field on the resulting object. When `null`, the `parameters_declarations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.new](#fn-definitionparameters_declarationsnew) constructor.\n - `sheets` (`list[obj]`): Set the `sheets` field on the resulting object. When `null`, the `sheets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.new](#fn-definitionsheetsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `definition` sub block.\n', args=[]), + new( + analysis_defaults=null, + calculated_fields=null, + column_configurations=null, + data_set_configuration=null, + filter_groups=null, + parameters_declarations=null, + sheets=null + ):: std.prune(a={ + analysis_defaults: analysis_defaults, + calculated_fields: calculated_fields, + column_configurations: column_configurations, + data_set_configuration: data_set_configuration, + filter_groups: filter_groups, + parameters_declarations: parameters_declarations, + sheets: sheets, + }), + parameters_declarations:: { + date_time_parameter_declaration:: { + default_values:: { + dynamic_value:: { + default_value_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `default_value_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + group_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `group_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdefault_value_columnnew) constructor.\n - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesgroup_name_columnnew) constructor.\n - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesuser_name_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_value` sub block.\n', args=[]), + new( + default_value_column=null, + group_name_column=null, + user_name_column=null + ):: std.prune(a={ + default_value_column: default_value_column, + group_name_column: group_name_column, + user_name_column: user_name_column, + }), + user_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `user_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object.\n - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdynamic_valuenew) constructor.\n - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationrolling_datenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_values` sub block.\n', args=[]), + new( + dynamic_value=null, + rolling_date=null, + static_values=null + ):: std.prune(a={ + dynamic_value: dynamic_value, + rolling_date: rolling_date, + static_values: static_values, + }), + rolling_date:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `rolling_date` sub block.\n', args=[]), + new( + expression, + data_set_identifier=null + ):: std.prune(a={ + data_set_identifier: data_set_identifier, + expression: expression, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `date_time_parameter_declaration`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor.\n - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_parameter_declaration` sub block.\n', args=[]), + new( + name, + default_values=null, + time_granularity=null, + values_when_unset=null + ):: std.prune(a={ + default_values: default_values, + name: name, + time_granularity: time_granularity, + values_when_unset: values_when_unset, + }), + values_when_unset:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_value` (`string`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object.\n - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `values_when_unset` sub block.\n', args=[]), + new( + custom_value=null, + value_when_unset_option=null + ):: std.prune(a={ + custom_value: custom_value, + value_when_unset_option: value_when_unset_option, + }), + }, + }, + decimal_parameter_declaration:: { + default_values:: { + dynamic_value:: { + default_value_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `default_value_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + group_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `group_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdefault_value_columnnew) constructor.\n - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesgroup_name_columnnew) constructor.\n - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesuser_name_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_value` sub block.\n', args=[]), + new( + default_value_column=null, + group_name_column=null, + user_name_column=null + ):: std.prune(a={ + default_value_column: default_value_column, + group_name_column: group_name_column, + user_name_column: user_name_column, + }), + user_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `user_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object.\n - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdynamic_valuenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_values` sub block.\n', args=[]), + new( + dynamic_value=null, + static_values=null + ):: std.prune(a={ + dynamic_value: dynamic_value, + static_values: static_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `decimal_parameter_declaration`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object.\n - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor.\n - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `decimal_parameter_declaration` sub block.\n', args=[]), + new( + name, + parameter_value_type, + default_values=null, + values_when_unset=null + ):: std.prune(a={ + default_values: default_values, + name: name, + parameter_value_type: parameter_value_type, + values_when_unset: values_when_unset, + }), + values_when_unset:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_value` (`number`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object.\n - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `values_when_unset` sub block.\n', args=[]), + new( + custom_value=null, + value_when_unset_option=null + ):: std.prune(a={ + custom_value: custom_value, + value_when_unset_option: value_when_unset_option, + }), + }, + }, + integer_parameter_declaration:: { + default_values:: { + dynamic_value:: { + default_value_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `default_value_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + group_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `group_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesdefault_value_columnnew) constructor.\n - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesgroup_name_columnnew) constructor.\n - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesuser_name_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_value` sub block.\n', args=[]), + new( + default_value_column=null, + group_name_column=null, + user_name_column=null + ):: std.prune(a={ + default_value_column: default_value_column, + group_name_column: group_name_column, + user_name_column: user_name_column, + }), + user_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `user_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object.\n - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdynamic_valuenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_values` sub block.\n', args=[]), + new( + dynamic_value=null, + static_values=null + ):: std.prune(a={ + dynamic_value: dynamic_value, + static_values: static_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `integer_parameter_declaration`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object.\n - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor.\n - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `integer_parameter_declaration` sub block.\n', args=[]), + new( + name, + parameter_value_type, + default_values=null, + values_when_unset=null + ):: std.prune(a={ + default_values: default_values, + name: name, + parameter_value_type: parameter_value_type, + values_when_unset: values_when_unset, + }), + values_when_unset:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_value` (`number`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object.\n - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `values_when_unset` sub block.\n', args=[]), + new( + custom_value=null, + value_when_unset_option=null + ):: std.prune(a={ + custom_value: custom_value, + value_when_unset_option: value_when_unset_option, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.new` constructs a new object with attributes and blocks configured for the `parameters_declarations`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_parameter_declaration` (`list[obj]`): Set the `date_time_parameter_declaration` field on the resulting object. When `null`, the `date_time_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.new](#fn-definitiondefinitiondate_time_parameter_declarationnew) constructor.\n - `decimal_parameter_declaration` (`list[obj]`): Set the `decimal_parameter_declaration` field on the resulting object. When `null`, the `decimal_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.new](#fn-definitiondefinitiondecimal_parameter_declarationnew) constructor.\n - `integer_parameter_declaration` (`list[obj]`): Set the `integer_parameter_declaration` field on the resulting object. When `null`, the `integer_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.new](#fn-definitiondefinitioninteger_parameter_declarationnew) constructor.\n - `string_parameter_declaration` (`list[obj]`): Set the `string_parameter_declaration` field on the resulting object. When `null`, the `string_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.new](#fn-definitiondefinitionstring_parameter_declarationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameters_declarations` sub block.\n', args=[]), + new( + date_time_parameter_declaration=null, + decimal_parameter_declaration=null, + integer_parameter_declaration=null, + string_parameter_declaration=null + ):: std.prune(a={ + date_time_parameter_declaration: date_time_parameter_declaration, + decimal_parameter_declaration: decimal_parameter_declaration, + integer_parameter_declaration: integer_parameter_declaration, + string_parameter_declaration: string_parameter_declaration, + }), + string_parameter_declaration:: { + default_values:: { + dynamic_value:: { + default_value_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `default_value_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + group_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `group_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesdefault_value_columnnew) constructor.\n - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesgroup_name_columnnew) constructor.\n - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesuser_name_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_value` sub block.\n', args=[]), + new( + default_value_column=null, + group_name_column=null, + user_name_column=null + ):: std.prune(a={ + default_value_column: default_value_column, + group_name_column: group_name_column, + user_name_column: user_name_column, + }), + user_name_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `user_name_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object.\n - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdynamic_valuenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_values` sub block.\n', args=[]), + new( + dynamic_value=null, + static_values=null + ):: std.prune(a={ + dynamic_value: dynamic_value, + static_values: static_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `string_parameter_declaration`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object.\n - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor.\n - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `string_parameter_declaration` sub block.\n', args=[]), + new( + name, + parameter_value_type, + default_values=null, + values_when_unset=null + ):: std.prune(a={ + default_values: default_values, + name: name, + parameter_value_type: parameter_value_type, + values_when_unset: values_when_unset, + }), + values_when_unset:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_value` (`string`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object.\n - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `values_when_unset` sub block.\n', args=[]), + new( + custom_value=null, + value_when_unset_option=null + ):: std.prune(a={ + custom_value: custom_value, + value_when_unset_option: value_when_unset_option, + }), + }, + }, + }, + sheets:: { + filter_controls:: { + date_time_picker:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickertitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + date_time_format=null, + title_options=null + ):: std.prune(a={ + date_time_format: date_time_format, + title_options: title_options, + }), + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.new` constructs a new object with attributes and blocks configured for the `date_time_picker`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_picker` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + display_options=null, + type=null + ):: std.prune(a={ + display_options: display_options, + filter_control_id: filter_control_id, + source_filter_id: source_filter_id, + title: title, + type: type, + }), + }, + dropdown:: { + cascading_control_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsfilter_controlsdropdownsource_controlsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cascading_control_configuration` sub block.\n', args=[]), + new( + source_controls=null + ):: std.prune(a={ + source_controls: source_controls, + }), + source_controls:: { + column_to_match:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_to_match` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object.\n - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowncascading_control_configurationcolumn_to_matchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_controls` sub block.\n', args=[]), + new( + column_to_match=null, + source_sheet_control_id=null + ):: std.prune(a={ + column_to_match: column_to_match, + source_sheet_control_id: source_sheet_control_id, + }), + }, + }, + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.select_all_options.new](#fn-definitiondefinitionsheetsfilter_controlsdropdownselect_all_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowntitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + select_all_options=null, + title_options=null + ):: std.prune(a={ + select_all_options: select_all_options, + title_options: title_options, + }), + select_all_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `select_all_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.new` constructs a new object with attributes and blocks configured for the `dropdown`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.new](#fn-definitiondefinitionsheetsfilter_controlscascading_control_configurationnew) constructor.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.selectable_values.new](#fn-definitiondefinitionsheetsfilter_controlsselectable_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dropdown` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + cascading_control_configuration=null, + display_options=null, + selectable_values=null, + type=null + ):: std.prune(a={ + cascading_control_configuration: cascading_control_configuration, + display_options: display_options, + filter_control_id: filter_control_id, + selectable_values: selectable_values, + source_filter_id: source_filter_id, + title: title, + type: type, + }), + selectable_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.dropdown.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selectable_values` sub block.\n', args=[]), + new( + values=null + ):: std.prune(a={ + values: values, + }), + }, + }, + list:: { + cascading_control_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsfilter_controlslistsource_controlsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cascading_control_configuration` sub block.\n', args=[]), + new( + source_controls=null + ):: std.prune(a={ + source_controls: source_controls, + }), + source_controls:: { + column_to_match:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_to_match` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object.\n - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsfilter_controlslistcascading_control_configurationcolumn_to_matchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_controls` sub block.\n', args=[]), + new( + column_to_match=null, + source_sheet_control_id=null + ):: std.prune(a={ + column_to_match: column_to_match, + source_sheet_control_id: source_sheet_control_id, + }), + }, + }, + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `search_options` (`list[obj]`): Set the `search_options` field on the resulting object. When `null`, the `search_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.search_options.new](#fn-definitiondefinitionsheetsfilter_controlslistsearch_optionsnew) constructor.\n - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.select_all_options.new](#fn-definitiondefinitionsheetsfilter_controlslistselect_all_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlslisttitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + search_options=null, + select_all_options=null, + title_options=null + ):: std.prune(a={ + search_options: search_options, + select_all_options: select_all_options, + title_options: title_options, + }), + search_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.search_options.new` constructs a new object with attributes and blocks configured for the `search_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `search_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + select_all_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `select_all_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.new` constructs a new object with attributes and blocks configured for the `list`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.new](#fn-definitiondefinitionsheetsfilter_controlscascading_control_configurationnew) constructor.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.selectable_values.new](#fn-definitiondefinitionsheetsfilter_controlsselectable_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `list` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + cascading_control_configuration=null, + display_options=null, + selectable_values=null, + type=null + ):: std.prune(a={ + cascading_control_configuration: cascading_control_configuration, + display_options: display_options, + filter_control_id: filter_control_id, + selectable_values: selectable_values, + source_filter_id: source_filter_id, + title: title, + type: type, + }), + selectable_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.list.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selectable_values` sub block.\n', args=[]), + new( + values=null + ):: std.prune(a={ + values: values, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.new` constructs a new object with attributes and blocks configured for the `filter_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_picker` (`list[obj]`): Set the `date_time_picker` field on the resulting object. When `null`, the `date_time_picker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.new](#fn-definitiondefinitionsheetsdate_time_pickernew) constructor.\n - `dropdown` (`list[obj]`): Set the `dropdown` field on the resulting object. When `null`, the `dropdown` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.new](#fn-definitiondefinitionsheetsdropdownnew) constructor.\n - `list` (`list[obj]`): Set the `list` field on the resulting object. When `null`, the `list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.new](#fn-definitiondefinitionsheetslistnew) constructor.\n - `relative_date_time` (`list[obj]`): Set the `relative_date_time` field on the resulting object. When `null`, the `relative_date_time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.new](#fn-definitiondefinitionsheetsrelative_date_timenew) constructor.\n - `slider` (`list[obj]`): Set the `slider` field on the resulting object. When `null`, the `slider` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.new](#fn-definitiondefinitionsheetsslidernew) constructor.\n - `text_area` (`list[obj]`): Set the `text_area` field on the resulting object. When `null`, the `text_area` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.new](#fn-definitiondefinitionsheetstext_areanew) constructor.\n - `text_field` (`list[obj]`): Set the `text_field` field on the resulting object. When `null`, the `text_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.new](#fn-definitiondefinitionsheetstext_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_controls` sub block.\n', args=[]), + new( + date_time_picker=null, + dropdown=null, + list=null, + relative_date_time=null, + slider=null, + text_area=null, + text_field=null + ):: std.prune(a={ + date_time_picker: date_time_picker, + dropdown: dropdown, + list: list, + relative_date_time: relative_date_time, + slider: slider, + text_area: text_area, + text_field: text_field, + }), + relative_date_time:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timetitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + date_time_format=null, + title_options=null + ):: std.prune(a={ + date_time_format: date_time_format, + title_options: title_options, + }), + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.new` constructs a new object with attributes and blocks configured for the `relative_date_time`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `relative_date_time` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + display_options=null + ):: std.prune(a={ + display_options: display_options, + filter_control_id: filter_control_id, + source_filter_id: source_filter_id, + title: title, + }), + }, + slider:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsslidertitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + title_options=null + ):: std.prune(a={ + title_options: title_options, + }), + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.slider.new` constructs a new object with attributes and blocks configured for the `slider`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `maximum_value` (`number`): Set the `maximum_value` field on the resulting object.\n - `minimum_value` (`number`): Set the `minimum_value` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slider` sub block.\n', args=[]), + new( + filter_control_id, + maximum_value, + minimum_value, + source_filter_id, + step_size, + title, + display_options=null, + type=null + ):: std.prune(a={ + display_options: display_options, + filter_control_id: filter_control_id, + maximum_value: maximum_value, + minimum_value: minimum_value, + source_filter_id: source_filter_id, + step_size: step_size, + title: title, + type: type, + }), + }, + text_area:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_areaplaceholder_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_areatitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + placeholder_options=null, + title_options=null + ):: std.prune(a={ + placeholder_options: placeholder_options, + title_options: title_options, + }), + placeholder_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `placeholder_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_area.new` constructs a new object with attributes and blocks configured for the `text_area`\nTerraform sub block.\n\n\n\n**Args**:\n - `delimiter` (`string`): Set the `delimiter` field on the resulting object. When `null`, the `delimiter` field will be omitted from the resulting object.\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_area` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + delimiter=null, + display_options=null + ):: std.prune(a={ + delimiter: delimiter, + display_options: display_options, + filter_control_id: filter_control_id, + source_filter_id: source_filter_id, + title: title, + }), + }, + text_field:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_fieldplaceholder_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_fieldtitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + placeholder_options=null, + title_options=null + ):: std.prune(a={ + placeholder_options: placeholder_options, + title_options: title_options, + }), + placeholder_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `placeholder_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.filter_controls.text_field.new` constructs a new object with attributes and blocks configured for the `text_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object.\n - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_field` sub block.\n', args=[]), + new( + filter_control_id, + source_filter_id, + title, + display_options=null + ):: std.prune(a={ + display_options: display_options, + filter_control_id: filter_control_id, + source_filter_id: source_filter_id, + title: title, + }), + }, + }, + layouts:: { + configuration:: { + free_form_layout:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutscreen_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + screen_canvas_size_options=null + ):: std.prune(a={ + screen_canvas_size_options: screen_canvas_size_options, + }), + screen_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `screen_canvas_size_options` sub block.\n', args=[]), + new( + optimized_view_port_width + ):: std.prune(a={ + optimized_view_port_width: optimized_view_port_width, + }), + }, + }, + elements:: { + background_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `background_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + loading_animation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `loading_animation` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `height` (`string`): Set the `height` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object.\n - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object.\n - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object.\n - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutbackground_stylenew) constructor.\n - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutborder_stylenew) constructor.\n - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutloading_animationnew) constructor.\n - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutrendering_rulesnew) constructor.\n - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutselected_border_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + element_id, + element_type, + height, + width, + x_axis_location, + y_axis_location, + background_style=null, + border_style=null, + loading_animation=null, + rendering_rules=null, + selected_border_style=null, + visibility=null + ):: std.prune(a={ + background_style: background_style, + border_style: border_style, + element_id: element_id, + element_type: element_type, + height: height, + loading_animation: loading_animation, + rendering_rules: rendering_rules, + selected_border_style: selected_border_style, + visibility: visibility, + width: width, + x_axis_location: x_axis_location, + y_axis_location: y_axis_location, + }), + rendering_rules:: { + configuration_overrides:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `configuration_overrides` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutelementsconfiguration_overridesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rendering_rules` sub block.\n', args=[]), + new( + expression, + configuration_overrides=null + ):: std.prune(a={ + configuration_overrides: configuration_overrides, + expression: expression, + }), + }, + selected_border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor.\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `free_form_layout` sub block.\n', args=[]), + new( + canvas_size_options=null, + elements=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + elements: elements, + }), + }, + grid_layout:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationgrid_layoutscreen_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + screen_canvas_size_options=null + ):: std.prune(a={ + screen_canvas_size_options: screen_canvas_size_options, + }), + screen_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object.\n - `resize_option` (`string`): Set the `resize_option` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `screen_canvas_size_options` sub block.\n', args=[]), + new( + optimized_view_port_width, + resize_option + ):: std.prune(a={ + optimized_view_port_width: optimized_view_port_width, + resize_option: resize_option, + }), + }, + }, + elements:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_index` (`number`): Set the `column_index` field on the resulting object. When `null`, the `column_index` field will be omitted from the resulting object.\n - `column_span` (`number`): Set the `column_span` field on the resulting object.\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `row_index` (`number`): Set the `row_index` field on the resulting object. When `null`, the `row_index` field will be omitted from the resulting object.\n - `row_span` (`number`): Set the `row_span` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + column_span, + element_id, + element_type, + row_span, + column_index=null, + row_index=null + ):: std.prune(a={ + column_index: column_index, + column_span: column_span, + element_id: element_id, + element_type: element_type, + row_index: row_index, + row_span: row_span, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.new` constructs a new object with attributes and blocks configured for the `grid_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor.\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `grid_layout` sub block.\n', args=[]), + new( + canvas_size_options=null, + elements=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + elements: elements, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.new` constructs a new object with attributes and blocks configured for the `configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsfree_form_layoutnew) constructor.\n - `grid_layout` (`list[obj]`): Set the `grid_layout` field on the resulting object. When `null`, the `grid_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.new](#fn-definitiondefinitionsheetslayoutsgrid_layoutnew) constructor.\n - `section_based_layout` (`list[obj]`): Set the `section_based_layout` field on the resulting object. When `null`, the `section_based_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.new](#fn-definitiondefinitionsheetslayoutssection_based_layoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `configuration` sub block.\n', args=[]), + new( + free_form_layout=null, + grid_layout=null, + section_based_layout=null + ):: std.prune(a={ + free_form_layout: free_form_layout, + grid_layout: grid_layout, + section_based_layout: section_based_layout, + }), + section_based_layout:: { + body_sections:: { + content:: { + layout:: { + free_form_layout:: { + elements:: { + background_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `background_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + loading_animation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `loading_animation` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `height` (`string`): Set the `height` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object.\n - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object.\n - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object.\n - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutbackground_stylenew) constructor.\n - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutborder_stylenew) constructor.\n - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutloading_animationnew) constructor.\n - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutrendering_rulesnew) constructor.\n - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutselected_border_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + element_id, + element_type, + height, + width, + x_axis_location, + y_axis_location, + background_style=null, + border_style=null, + loading_animation=null, + rendering_rules=null, + selected_border_style=null, + visibility=null + ):: std.prune(a={ + background_style: background_style, + border_style: border_style, + element_id: element_id, + element_type: element_type, + height: height, + loading_animation: loading_animation, + rendering_rules: rendering_rules, + selected_border_style: selected_border_style, + visibility: visibility, + width: width, + x_axis_location: x_axis_location, + y_axis_location: y_axis_location, + }), + rendering_rules:: { + configuration_overrides:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `configuration_overrides` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsconfiguration_overridesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rendering_rules` sub block.\n', args=[]), + new( + expression, + configuration_overrides=null + ):: std.prune(a={ + configuration_overrides: configuration_overrides, + expression: expression, + }), + }, + selected_border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `free_form_layout` sub block.\n', args=[]), + new( + elements=null + ):: std.prune(a={ + elements: elements, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.new` constructs a new object with attributes and blocks configured for the `layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentfree_form_layoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `layout` sub block.\n', args=[]), + new( + free_form_layout=null + ):: std.prune(a={ + free_form_layout: free_form_layout, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.new` constructs a new object with attributes and blocks configured for the `content`\nTerraform sub block.\n\n\n\n**Args**:\n - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionslayoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `content` sub block.\n', args=[]), + new( + layout=null + ):: std.prune(a={ + layout: layout, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.new` constructs a new object with attributes and blocks configured for the `body_sections`\nTerraform sub block.\n\n\n\n**Args**:\n - `section_id` (`string`): Set the `section_id` field on the resulting object.\n - `content` (`list[obj]`): Set the `content` field on the resulting object. When `null`, the `content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutcontentnew) constructor.\n - `page_break_configuration` (`list[obj]`): Set the `page_break_configuration` field on the resulting object. When `null`, the `page_break_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutpage_break_configurationnew) constructor.\n - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `body_sections` sub block.\n', args=[]), + new( + section_id, + content=null, + page_break_configuration=null, + style=null + ):: std.prune(a={ + content: content, + page_break_configuration: page_break_configuration, + section_id: section_id, + style: style, + }), + page_break_configuration:: { + after:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after.new` constructs a new object with attributes and blocks configured for the `after`\nTerraform sub block.\n\n\n\n**Args**:\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `after` sub block.\n', args=[]), + new( + status=null + ):: std.prune(a={ + status: status, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.new` constructs a new object with attributes and blocks configured for the `page_break_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `after` (`list[obj]`): Set the `after` field on the resulting object. When `null`, the `after` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsafternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `page_break_configuration` sub block.\n', args=[]), + new( + after=null + ):: std.prune(a={ + after: after, + }), + }, + style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.new` constructs a new object with attributes and blocks configured for the `style`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspaddingnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `style` sub block.\n', args=[]), + new( + height=null, + padding=null + ):: std.prune(a={ + height: height, + padding: padding, + }), + padding:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object.\n - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object.\n - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object.\n - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `padding` sub block.\n', args=[]), + new( + bottom=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + left: left, + right: right, + top: top, + }), + }, + }, + }, + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `paper_canvas_size_options` (`list[obj]`): Set the `paper_canvas_size_options` field on the resulting object. When `null`, the `paper_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutpaper_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + paper_canvas_size_options=null + ):: std.prune(a={ + paper_canvas_size_options: paper_canvas_size_options, + }), + paper_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `paper_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `paper_orientation` (`string`): Set the `paper_orientation` field on the resulting object. When `null`, the `paper_orientation` field will be omitted from the resulting object.\n - `paper_size` (`string`): Set the `paper_size` field on the resulting object. When `null`, the `paper_size` field will be omitted from the resulting object.\n - `paper_margin` (`list[obj]`): Set the `paper_margin` field on the resulting object. When `null`, the `paper_margin` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_marginnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `paper_canvas_size_options` sub block.\n', args=[]), + new( + paper_margin=null, + paper_orientation=null, + paper_size=null + ):: std.prune(a={ + paper_margin: paper_margin, + paper_orientation: paper_orientation, + paper_size: paper_size, + }), + paper_margin:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin.new` constructs a new object with attributes and blocks configured for the `paper_margin`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object.\n - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object.\n - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object.\n - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `paper_margin` sub block.\n', args=[]), + new( + bottom=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + left: left, + right: right, + top: top, + }), + }, + }, + }, + footer_sections:: { + layout:: { + free_form_layout:: { + elements:: { + background_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `background_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + loading_animation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `loading_animation` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `height` (`string`): Set the `height` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object.\n - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object.\n - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object.\n - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutbackground_stylenew) constructor.\n - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutborder_stylenew) constructor.\n - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutloading_animationnew) constructor.\n - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutrendering_rulesnew) constructor.\n - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutselected_border_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + element_id, + element_type, + height, + width, + x_axis_location, + y_axis_location, + background_style=null, + border_style=null, + loading_animation=null, + rendering_rules=null, + selected_border_style=null, + visibility=null + ):: std.prune(a={ + background_style: background_style, + border_style: border_style, + element_id: element_id, + element_type: element_type, + height: height, + loading_animation: loading_animation, + rendering_rules: rendering_rules, + selected_border_style: selected_border_style, + visibility: visibility, + width: width, + x_axis_location: x_axis_location, + y_axis_location: y_axis_location, + }), + rendering_rules:: { + configuration_overrides:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `configuration_overrides` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsconfiguration_overridesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rendering_rules` sub block.\n', args=[]), + new( + expression, + configuration_overrides=null + ):: std.prune(a={ + configuration_overrides: configuration_overrides, + expression: expression, + }), + }, + selected_border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `free_form_layout` sub block.\n', args=[]), + new( + elements=null + ):: std.prune(a={ + elements: elements, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.new` constructs a new object with attributes and blocks configured for the `layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsfree_form_layoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `layout` sub block.\n', args=[]), + new( + free_form_layout=null + ):: std.prune(a={ + free_form_layout: free_form_layout, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.new` constructs a new object with attributes and blocks configured for the `footer_sections`\nTerraform sub block.\n\n\n\n**Args**:\n - `section_id` (`string`): Set the `section_id` field on the resulting object.\n - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutlayoutnew) constructor.\n - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `footer_sections` sub block.\n', args=[]), + new( + section_id, + layout=null, + style=null + ):: std.prune(a={ + layout: layout, + section_id: section_id, + style: style, + }), + style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.new` constructs a new object with attributes and blocks configured for the `style`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionspaddingnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `style` sub block.\n', args=[]), + new( + height=null, + padding=null + ):: std.prune(a={ + height: height, + padding: padding, + }), + padding:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object.\n - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object.\n - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object.\n - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `padding` sub block.\n', args=[]), + new( + bottom=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + left: left, + right: right, + top: top, + }), + }, + }, + }, + header_sections:: { + layout:: { + free_form_layout:: { + elements:: { + background_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `background_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + loading_animation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `loading_animation` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `height` (`string`): Set the `height` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object.\n - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object.\n - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object.\n - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutbackground_stylenew) constructor.\n - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutborder_stylenew) constructor.\n - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutloading_animationnew) constructor.\n - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutrendering_rulesnew) constructor.\n - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutselected_border_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + element_id, + element_type, + height, + width, + x_axis_location, + y_axis_location, + background_style=null, + border_style=null, + loading_animation=null, + rendering_rules=null, + selected_border_style=null, + visibility=null + ):: std.prune(a={ + background_style: background_style, + border_style: border_style, + element_id: element_id, + element_type: element_type, + height: height, + loading_animation: loading_animation, + rendering_rules: rendering_rules, + selected_border_style: selected_border_style, + visibility: visibility, + width: width, + x_axis_location: x_axis_location, + y_axis_location: y_axis_location, + }), + rendering_rules:: { + configuration_overrides:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `configuration_overrides` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsconfiguration_overridesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rendering_rules` sub block.\n', args=[]), + new( + expression, + configuration_overrides=null + ):: std.prune(a={ + configuration_overrides: configuration_overrides, + expression: expression, + }), + }, + selected_border_style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_border_style` sub block.\n', args=[]), + new( + color=null, + visibility=null + ):: std.prune(a={ + color: color, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `free_form_layout` sub block.\n', args=[]), + new( + elements=null + ):: std.prune(a={ + elements: elements, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.new` constructs a new object with attributes and blocks configured for the `layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsfree_form_layoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `layout` sub block.\n', args=[]), + new( + free_form_layout=null + ):: std.prune(a={ + free_form_layout: free_form_layout, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.new` constructs a new object with attributes and blocks configured for the `header_sections`\nTerraform sub block.\n\n\n\n**Args**:\n - `section_id` (`string`): Set the `section_id` field on the resulting object.\n - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutlayoutnew) constructor.\n - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `header_sections` sub block.\n', args=[]), + new( + section_id, + layout=null, + style=null + ):: std.prune(a={ + layout: layout, + section_id: section_id, + style: style, + }), + style:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.new` constructs a new object with attributes and blocks configured for the `style`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionspaddingnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `style` sub block.\n', args=[]), + new( + height=null, + padding=null + ):: std.prune(a={ + height: height, + padding: padding, + }), + padding:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object.\n - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object.\n - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object.\n - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `padding` sub block.\n', args=[]), + new( + bottom=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + left: left, + right: right, + top: top, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.new` constructs a new object with attributes and blocks configured for the `section_based_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `body_sections` (`list[obj]`): Set the `body_sections` field on the resulting object. When `null`, the `body_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationbody_sectionsnew) constructor.\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor.\n - `footer_sections` (`list[obj]`): Set the `footer_sections` field on the resulting object. When `null`, the `footer_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationfooter_sectionsnew) constructor.\n - `header_sections` (`list[obj]`): Set the `header_sections` field on the resulting object. When `null`, the `header_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationheader_sectionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `section_based_layout` sub block.\n', args=[]), + new( + body_sections=null, + canvas_size_options=null, + footer_sections=null, + header_sections=null + ):: std.prune(a={ + body_sections: body_sections, + canvas_size_options: canvas_size_options, + footer_sections: footer_sections, + header_sections: header_sections, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.layouts.new` constructs a new object with attributes and blocks configured for the `layouts`\nTerraform sub block.\n\n\n\n**Args**:\n - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.new](#fn-definitiondefinitionsheetsconfigurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `layouts` sub block.\n', args=[]), + new( + configuration=null + ):: std.prune(a={ + configuration: configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.new` constructs a new object with attributes and blocks configured for the `sheets`\nTerraform sub block.\n\n\n\n**Args**:\n - `content_type` (`string`): Set the `content_type` field on the resulting object. When `null`, the `content_type` field will be omitted from the resulting object.\n - `description` (`string`): Set the `description` field on the resulting object. When `null`, the `description` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `sheet_id` (`string`): Set the `sheet_id` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object. When `null`, the `title` field will be omitted from the resulting object.\n - `filter_controls` (`list[obj]`): Set the `filter_controls` field on the resulting object. When `null`, the `filter_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.quicksight_template.definition.sheets.filter_controls.new](#fn-definitiondefinitionfilter_controlsnew) constructor.\n - `layouts` (`list[obj]`): Set the `layouts` field on the resulting object. When `null`, the `layouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.new](#fn-definitiondefinitionlayoutsnew) constructor.\n - `parameter_controls` (`list[obj]`): Set the `parameter_controls` field on the resulting object. When `null`, the `parameter_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.quicksight_template.definition.sheets.parameter_controls.new](#fn-definitiondefinitionparameter_controlsnew) constructor.\n - `sheet_control_layouts` (`list[obj]`): Set the `sheet_control_layouts` field on the resulting object. When `null`, the `sheet_control_layouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.new](#fn-definitiondefinitionsheet_control_layoutsnew) constructor.\n - `text_boxes` (`list[obj]`): Set the `text_boxes` field on the resulting object. When `null`, the `text_boxes` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.text_boxes.new](#fn-definitiondefinitiontext_boxesnew) constructor.\n - `visuals` (`list[obj]`): Set the `visuals` field on the resulting object. When `null`, the `visuals` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.new](#fn-definitiondefinitionvisualsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sheets` sub block.\n', args=[]), + new( + sheet_id, + content_type=null, + description=null, + filter_controls=null, + layouts=null, + name=null, + parameter_controls=null, + sheet_control_layouts=null, + text_boxes=null, + title=null, + visuals=null + ):: std.prune(a={ + content_type: content_type, + description: description, + filter_controls: filter_controls, + layouts: layouts, + name: name, + parameter_controls: parameter_controls, + sheet_control_layouts: sheet_control_layouts, + sheet_id: sheet_id, + text_boxes: text_boxes, + title: title, + visuals: visuals, + }), + parameter_controls:: { + date_time_picker:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickertitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + date_time_format=null, + title_options=null + ):: std.prune(a={ + date_time_format: date_time_format, + title_options: title_options, + }), + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.new` constructs a new object with attributes and blocks configured for the `date_time_picker`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_picker` sub block.\n', args=[]), + new( + parameter_control_id, + source_parameter_name, + title, + display_options=null + ):: std.prune(a={ + display_options: display_options, + parameter_control_id: parameter_control_id, + source_parameter_name: source_parameter_name, + title: title, + }), + }, + dropdown:: { + cascading_control_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownsource_controlsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cascading_control_configuration` sub block.\n', args=[]), + new( + source_controls=null + ):: std.prune(a={ + source_controls: source_controls, + }), + source_controls:: { + column_to_match:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_to_match` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object.\n - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowncascading_control_configurationcolumn_to_matchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_controls` sub block.\n', args=[]), + new( + column_to_match=null, + source_sheet_control_id=null + ):: std.prune(a={ + column_to_match: column_to_match, + source_sheet_control_id: source_sheet_control_id, + }), + }, + }, + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.select_all_options.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownselect_all_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowntitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + select_all_options=null, + title_options=null + ):: std.prune(a={ + select_all_options: select_all_options, + title_options: title_options, + }), + select_all_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `select_all_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.new` constructs a new object with attributes and blocks configured for the `dropdown`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.new](#fn-definitiondefinitionsheetsparameter_controlscascading_control_configurationnew) constructor.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.new](#fn-definitiondefinitionsheetsparameter_controlsselectable_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dropdown` sub block.\n', args=[]), + new( + parameter_control_id, + source_parameter_name, + title, + cascading_control_configuration=null, + display_options=null, + selectable_values=null, + type=null + ):: std.prune(a={ + cascading_control_configuration: cascading_control_configuration, + display_options: display_options, + parameter_control_id: parameter_control_id, + selectable_values: selectable_values, + source_parameter_name: source_parameter_name, + title: title, + type: type, + }), + selectable_values:: { + link_to_data_set_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column.new` constructs a new object with attributes and blocks configured for the `link_to_data_set_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `link_to_data_set_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object.\n - `link_to_data_set_column` (`list[obj]`): Set the `link_to_data_set_column` field on the resulting object. When `null`, the `link_to_data_set_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownlink_to_data_set_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `selectable_values` sub block.\n', args=[]), + new( + link_to_data_set_column=null, + values=null + ):: std.prune(a={ + link_to_data_set_column: link_to_data_set_column, + values: values, + }), + }, + }, + list:: { + cascading_control_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsparameter_controlslistsource_controlsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cascading_control_configuration` sub block.\n', args=[]), + new( + source_controls=null + ):: std.prune(a={ + source_controls: source_controls, + }), + source_controls:: { + column_to_match:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column_to_match` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object.\n - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsparameter_controlslistcascading_control_configurationcolumn_to_matchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_controls` sub block.\n', args=[]), + new( + column_to_match=null, + source_sheet_control_id=null + ):: std.prune(a={ + column_to_match: column_to_match, + source_sheet_control_id: source_sheet_control_id, + }), + }, + }, + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `search_options` (`list[obj]`): Set the `search_options` field on the resulting object. When `null`, the `search_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.search_options.new](#fn-definitiondefinitionsheetsparameter_controlslistsearch_optionsnew) constructor.\n - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.select_all_options.new](#fn-definitiondefinitionsheetsparameter_controlslistselect_all_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlslisttitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + search_options=null, + select_all_options=null, + title_options=null + ):: std.prune(a={ + search_options: search_options, + select_all_options: select_all_options, + title_options: title_options, + }), + search_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.search_options.new` constructs a new object with attributes and blocks configured for the `search_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `search_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + select_all_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `select_all_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.new` constructs a new object with attributes and blocks configured for the `list`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.new](#fn-definitiondefinitionsheetsparameter_controlscascading_control_configurationnew) constructor.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.new](#fn-definitiondefinitionsheetsparameter_controlsselectable_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `list` sub block.\n', args=[]), + new( + parameter_control_id, + source_parameter_name, + title, + cascading_control_configuration=null, + display_options=null, + selectable_values=null, + type=null + ):: std.prune(a={ + cascading_control_configuration: cascading_control_configuration, + display_options: display_options, + parameter_control_id: parameter_control_id, + selectable_values: selectable_values, + source_parameter_name: source_parameter_name, + title: title, + type: type, + }), + selectable_values:: { + link_to_data_set_column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column.new` constructs a new object with attributes and blocks configured for the `link_to_data_set_column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `link_to_data_set_column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object.\n - `link_to_data_set_column` (`list[obj]`): Set the `link_to_data_set_column` field on the resulting object. When `null`, the `link_to_data_set_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column.new](#fn-definitiondefinitionsheetsparameter_controlslistlink_to_data_set_columnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `selectable_values` sub block.\n', args=[]), + new( + link_to_data_set_column=null, + values=null + ):: std.prune(a={ + link_to_data_set_column: link_to_data_set_column, + values: values, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.new` constructs a new object with attributes and blocks configured for the `parameter_controls`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_picker` (`list[obj]`): Set the `date_time_picker` field on the resulting object. When `null`, the `date_time_picker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.new](#fn-definitiondefinitionsheetsdate_time_pickernew) constructor.\n - `dropdown` (`list[obj]`): Set the `dropdown` field on the resulting object. When `null`, the `dropdown` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.new](#fn-definitiondefinitionsheetsdropdownnew) constructor.\n - `list` (`list[obj]`): Set the `list` field on the resulting object. When `null`, the `list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.new](#fn-definitiondefinitionsheetslistnew) constructor.\n - `slider` (`list[obj]`): Set the `slider` field on the resulting object. When `null`, the `slider` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.new](#fn-definitiondefinitionsheetsslidernew) constructor.\n - `text_area` (`list[obj]`): Set the `text_area` field on the resulting object. When `null`, the `text_area` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.new](#fn-definitiondefinitionsheetstext_areanew) constructor.\n - `text_field` (`list[obj]`): Set the `text_field` field on the resulting object. When `null`, the `text_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.new](#fn-definitiondefinitionsheetstext_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_controls` sub block.\n', args=[]), + new( + date_time_picker=null, + dropdown=null, + list=null, + slider=null, + text_area=null, + text_field=null + ):: std.prune(a={ + date_time_picker: date_time_picker, + dropdown: dropdown, + list: list, + slider: slider, + text_area: text_area, + text_field: text_field, + }), + slider:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsslidertitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + title_options=null + ):: std.prune(a={ + title_options: title_options, + }), + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.slider.new` constructs a new object with attributes and blocks configured for the `slider`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum_value` (`number`): Set the `maximum_value` field on the resulting object.\n - `minimum_value` (`number`): Set the `minimum_value` field on the resulting object.\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slider` sub block.\n', args=[]), + new( + maximum_value, + minimum_value, + parameter_control_id, + source_parameter_name, + step_size, + title, + display_options=null + ):: std.prune(a={ + display_options: display_options, + maximum_value: maximum_value, + minimum_value: minimum_value, + parameter_control_id: parameter_control_id, + source_parameter_name: source_parameter_name, + step_size: step_size, + title: title, + }), + }, + text_area:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_areaplaceholder_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_areatitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + placeholder_options=null, + title_options=null + ):: std.prune(a={ + placeholder_options: placeholder_options, + title_options: title_options, + }), + placeholder_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `placeholder_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_area.new` constructs a new object with attributes and blocks configured for the `text_area`\nTerraform sub block.\n\n\n\n**Args**:\n - `delimiter` (`string`): Set the `delimiter` field on the resulting object. When `null`, the `delimiter` field will be omitted from the resulting object.\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_area` sub block.\n', args=[]), + new( + parameter_control_id, + source_parameter_name, + title, + delimiter=null, + display_options=null + ):: std.prune(a={ + delimiter: delimiter, + display_options: display_options, + parameter_control_id: parameter_control_id, + source_parameter_name: source_parameter_name, + title: title, + }), + }, + text_field:: { + display_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.new` constructs a new object with attributes and blocks configured for the `display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_fieldplaceholder_optionsnew) constructor.\n - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_fieldtitle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `display_options` sub block.\n', args=[]), + new( + placeholder_options=null, + title_options=null + ):: std.prune(a={ + placeholder_options: placeholder_options, + title_options: title_options, + }), + placeholder_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `placeholder_options` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + title_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.parameter_controls.text_field.new` constructs a new object with attributes and blocks configured for the `text_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_field` sub block.\n', args=[]), + new( + parameter_control_id, + source_parameter_name, + title, + display_options=null + ):: std.prune(a={ + display_options: display_options, + parameter_control_id: parameter_control_id, + source_parameter_name: source_parameter_name, + title: title, + }), + }, + }, + sheet_control_layouts:: { + configuration:: { + grid_layout:: { + canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationgrid_layoutscreen_canvas_size_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `canvas_size_options` sub block.\n', args=[]), + new( + screen_canvas_size_options=null + ):: std.prune(a={ + screen_canvas_size_options: screen_canvas_size_options, + }), + screen_canvas_size_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object.\n - `resize_option` (`string`): Set the `resize_option` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `screen_canvas_size_options` sub block.\n', args=[]), + new( + optimized_view_port_width, + resize_option + ):: std.prune(a={ + optimized_view_port_width: optimized_view_port_width, + resize_option: resize_option, + }), + }, + }, + elements:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_index` (`number`): Set the `column_index` field on the resulting object. When `null`, the `column_index` field will be omitted from the resulting object.\n - `column_span` (`number`): Set the `column_span` field on the resulting object.\n - `element_id` (`string`): Set the `element_id` field on the resulting object.\n - `element_type` (`string`): Set the `element_type` field on the resulting object.\n - `row_index` (`number`): Set the `row_index` field on the resulting object. When `null`, the `row_index` field will be omitted from the resulting object.\n - `row_span` (`number`): Set the `row_span` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `elements` sub block.\n', args=[]), + new( + column_span, + element_id, + element_type, + row_span, + column_index=null, + row_index=null + ):: std.prune(a={ + column_index: column_index, + column_span: column_span, + element_id: element_id, + element_type: element_type, + row_index: row_index, + row_span: row_span, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.new` constructs a new object with attributes and blocks configured for the `grid_layout`\nTerraform sub block.\n\n\n\n**Args**:\n - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationcanvas_size_optionsnew) constructor.\n - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.elements.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationelementsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `grid_layout` sub block.\n', args=[]), + new( + canvas_size_options=null, + elements=null + ):: std.prune(a={ + canvas_size_options: canvas_size_options, + elements: elements, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.new` constructs a new object with attributes and blocks configured for the `configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `grid_layout` (`list[obj]`): Set the `grid_layout` field on the resulting object. When `null`, the `grid_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.new](#fn-definitiondefinitionsheetssheet_control_layoutsgrid_layoutnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `configuration` sub block.\n', args=[]), + new( + grid_layout=null + ):: std.prune(a={ + grid_layout: grid_layout, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.sheet_control_layouts.new` constructs a new object with attributes and blocks configured for the `sheet_control_layouts`\nTerraform sub block.\n\n\n\n**Args**:\n - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.new](#fn-definitiondefinitionsheetsconfigurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sheet_control_layouts` sub block.\n', args=[]), + new( + configuration=null + ):: std.prune(a={ + configuration: configuration, + }), + }, + text_boxes:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.text_boxes.new` constructs a new object with attributes and blocks configured for the `text_boxes`\nTerraform sub block.\n\n\n\n**Args**:\n - `content` (`string`): Set the `content` field on the resulting object. When `null`, the `content` field will be omitted from the resulting object.\n - `sheet_text_box_id` (`string`): Set the `sheet_text_box_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `text_boxes` sub block.\n', args=[]), + new( + sheet_text_box_id, + content=null + ):: std.prune(a={ + content: content, + sheet_text_box_id: sheet_text_box_id, + }), + }, + visuals:: { + bar_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + category_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + color_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + contribution_analysis_defaults:: { + contributor_dimensions:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `contributor_dimensions` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults`\nTerraform sub block.\n\n\n\n**Args**:\n - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object.\n - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcontributor_dimensionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `contribution_analysis_defaults` sub block.\n', args=[]), + new( + measure_field_id, + contributor_dimensions=null + ):: std.prune(a={ + contributor_dimensions: contributor_dimensions, + measure_field_id: measure_field_id, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + bar_chart_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + colors:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `bar_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellscolorsnew) constructor.\n - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `bar_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + colors=null, + small_multiples=null, + values=null + ):: std.prune(a={ + category: category, + colors: colors, + small_multiples: small_multiples, + values: values, + }), + small_multiples:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `bar_chart_aggregated_field_wells` (`list[obj]`): Set the `bar_chart_aggregated_field_wells` field on the resulting object. When `null`, the `bar_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationbar_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + bar_chart_aggregated_field_wells=null + ):: std.prune(a={ + bar_chart_aggregated_field_wells: bar_chart_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `bars_arrangement` (`string`): Set the `bars_arrangement` field on the resulting object. When `null`, the `bars_arrangement` field will be omitted from the resulting object.\n - `orientation` (`string`): Set the `orientation` field on the resulting object. When `null`, the `orientation` field will be omitted from the resulting object.\n - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcategory_axisnew) constructor.\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcategory_label_optionsnew) constructor.\n - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolor_label_optionsnew) constructor.\n - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcontribution_analysis_defaultsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visuallegendnew) constructor.\n - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualreference_linesnew) constructor.\n - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualsmall_multiples_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualtooltipnew) constructor.\n - `value_axis` (`list[obj]`): Set the `value_axis` field on the resulting object. When `null`, the `value_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvalue_axisnew) constructor.\n - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvalue_label_optionsnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + bars_arrangement=null, + category_axis=null, + category_label_options=null, + color_label_options=null, + contribution_analysis_defaults=null, + data_labels=null, + field_wells=null, + legend=null, + orientation=null, + reference_lines=null, + small_multiples_options=null, + sort_configuration=null, + tooltip=null, + value_axis=null, + value_label_options=null, + visual_palette=null + ):: std.prune(a={ + bars_arrangement: bars_arrangement, + category_axis: category_axis, + category_label_options: category_label_options, + color_label_options: color_label_options, + contribution_analysis_defaults: contribution_analysis_defaults, + data_labels: data_labels, + field_wells: field_wells, + legend: legend, + orientation: orientation, + reference_lines: reference_lines, + small_multiples_options: small_multiples_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + value_axis: value_axis, + value_label_options: value_label_options, + visual_palette: visual_palette, + }), + reference_lines:: { + data_configuration:: { + dynamic_configuration:: { + calculation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `calculation` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + measure_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `measure_aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor.\n - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_configuration` sub block.\n', args=[]), + new( + calculation=null, + column=null, + measure_aggregation_function=null + ):: std.prune(a={ + calculation: calculation, + column: column, + measure_aggregation_function: measure_aggregation_function, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object.\n - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor.\n - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_configuration` sub block.\n', args=[]), + new( + axis_binding=null, + dynamic_configuration=null, + static_configuration=null + ):: std.prune(a={ + axis_binding: axis_binding, + dynamic_configuration: dynamic_configuration, + static_configuration: static_configuration, + }), + static_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `static_configuration` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + label_configuration:: { + custom_label_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_label_configuration` sub block.\n', args=[]), + new( + custom_label + ):: std.prune(a={ + custom_label: custom_label, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object.\n - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object.\n - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesfont_configurationnew) constructor.\n - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_configuration` sub block.\n', args=[]), + new( + custom_label_configuration=null, + font_color=null, + font_configuration=null, + horizontal_position=null, + value_label_configuration=null, + vertical_position=null + ):: std.prune(a={ + custom_label_configuration: custom_label_configuration, + font_color: font_color, + font_configuration: font_configuration, + horizontal_position: horizontal_position, + value_label_configuration: value_label_configuration, + vertical_position: vertical_position, + }), + value_label_configuration:: { + format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_configuration` sub block.\n', args=[]), + new( + format_configuration=null, + relative_position=null + ):: std.prune(a={ + format_configuration: format_configuration, + relative_position: relative_position, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines`\nTerraform sub block.\n\n\n\n**Args**:\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_configurationnew) constructor.\n - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlabel_configurationnew) constructor.\n - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationstyle_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `reference_lines` sub block.\n', args=[]), + new( + data_configuration=null, + label_configuration=null, + status=null, + style_configuration=null + ):: std.prune(a={ + data_configuration: data_configuration, + label_configuration: label_configuration, + status: status, + style_configuration: style_configuration, + }), + style_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `style_configuration` sub block.\n', args=[]), + new( + color=null, + pattern=null + ):: std.prune(a={ + color: color, + pattern: pattern, + }), + }, + }, + small_multiples_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object.\n - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object.\n - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationpanel_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_options` sub block.\n', args=[]), + new( + max_visible_columns=null, + max_visible_rows=null, + panel_configuration=null + ):: std.prune(a={ + max_visible_columns: max_visible_columns, + max_visible_rows: max_visible_rows, + panel_configuration: panel_configuration, + }), + panel_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object.\n - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object.\n - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object.\n - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object.\n - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object.\n - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object.\n - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `panel_configuration` sub block.\n', args=[]), + new( + background_color=null, + background_visibility=null, + border_color=null, + border_style=null, + border_thickness=null, + border_visibility=null, + gutter_spacing=null, + gutter_visibility=null, + title=null + ):: std.prune(a={ + background_color: background_color, + background_visibility: background_visibility, + border_color: border_color, + border_style: border_style, + border_thickness: border_thickness, + border_visibility: border_visibility, + gutter_spacing: gutter_spacing, + gutter_visibility: gutter_visibility, + title: title, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + font_configuration=null, + horizontal_text_alignment=null, + visibility=null + ):: std.prune(a={ + font_configuration: font_configuration, + horizontal_text_alignment: horizontal_text_alignment, + visibility: visibility, + }), + }, + }, + }, + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + color_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `color_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + color_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_sortnew) constructor.\n - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_items_limitnew) constructor.\n - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_sortnew) constructor.\n - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor.\n - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null, + color_items_limit=null, + color_sort=null, + small_multiples_limit_configuration=null, + small_multiples_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + color_items_limit: color_items_limit, + color_sort: color_sort, + small_multiples_limit_configuration: small_multiples_limit_configuration, + small_multiples_sort: small_multiples_sort, + }), + small_multiples_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + small_multiples_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + value_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.new` constructs a new object with attributes and blocks configured for the `value_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + value_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.new` constructs a new object with attributes and blocks configured for the `bar_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `bar_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + box_plot_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + box_plot_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.new` constructs a new object with attributes and blocks configured for the `box_plot_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `all_data_points_visibility` (`string`): Set the `all_data_points_visibility` field on the resulting object. When `null`, the `all_data_points_visibility` field will be omitted from the resulting object.\n - `outlier_visibility` (`string`): Set the `outlier_visibility` field on the resulting object. When `null`, the `outlier_visibility` field will be omitted from the resulting object.\n - `style_options` (`list[obj]`): Set the `style_options` field on the resulting object. When `null`, the `style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationstyle_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `box_plot_options` sub block.\n', args=[]), + new( + all_data_points_visibility=null, + outlier_visibility=null, + style_options=null + ):: std.prune(a={ + all_data_points_visibility: all_data_points_visibility, + outlier_visibility: outlier_visibility, + style_options: style_options, + }), + style_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options.new` constructs a new object with attributes and blocks configured for the `style_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `fill_style` (`string`): Set the `fill_style` field on the resulting object. When `null`, the `fill_style` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `style_options` sub block.\n', args=[]), + new( + fill_style=null + ):: std.prune(a={ + fill_style: fill_style, + }), + }, + }, + category_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + field_wells:: { + box_plot_aggregated_field_wells:: { + group_by:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `group_by` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `box_plot_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsgroup_bynew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `box_plot_aggregated_field_wells` sub block.\n', args=[]), + new( + group_by=null, + values=null + ):: std.prune(a={ + group_by: group_by, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `box_plot_aggregated_field_wells` (`list[obj]`): Set the `box_plot_aggregated_field_wells` field on the resulting object. When `null`, the `box_plot_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + box_plot_aggregated_field_wells=null + ):: std.prune(a={ + box_plot_aggregated_field_wells: box_plot_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `box_plot_options` (`list[obj]`): Set the `box_plot_options` field on the resulting object. When `null`, the `box_plot_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualbox_plot_optionsnew) constructor.\n - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcategory_axisnew) constructor.\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcategory_label_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visuallegendnew) constructor.\n - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualprimary_y_axis_display_optionsnew) constructor.\n - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualprimary_y_axis_label_optionsnew) constructor.\n - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualreference_linesnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + box_plot_options=null, + category_axis=null, + category_label_options=null, + field_wells=null, + legend=null, + primary_y_axis_display_options=null, + primary_y_axis_label_options=null, + reference_lines=null, + sort_configuration=null, + tooltip=null, + visual_palette=null + ):: std.prune(a={ + box_plot_options: box_plot_options, + category_axis: category_axis, + category_label_options: category_label_options, + field_wells: field_wells, + legend: legend, + primary_y_axis_display_options: primary_y_axis_display_options, + primary_y_axis_label_options: primary_y_axis_label_options, + reference_lines: reference_lines, + sort_configuration: sort_configuration, + tooltip: tooltip, + visual_palette: visual_palette, + }), + primary_y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + primary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + reference_lines:: { + data_configuration:: { + dynamic_configuration:: { + calculation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `calculation` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + measure_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `measure_aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor.\n - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_configuration` sub block.\n', args=[]), + new( + calculation=null, + column=null, + measure_aggregation_function=null + ):: std.prune(a={ + calculation: calculation, + column: column, + measure_aggregation_function: measure_aggregation_function, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object.\n - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdynamic_configurationnew) constructor.\n - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesstatic_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_configuration` sub block.\n', args=[]), + new( + axis_binding=null, + dynamic_configuration=null, + static_configuration=null + ):: std.prune(a={ + axis_binding: axis_binding, + dynamic_configuration: dynamic_configuration, + static_configuration: static_configuration, + }), + static_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `static_configuration` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + label_configuration:: { + custom_label_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_label_configuration` sub block.\n', args=[]), + new( + custom_label + ):: std.prune(a={ + custom_label: custom_label, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object.\n - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object.\n - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linescustom_label_configurationnew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesfont_configurationnew) constructor.\n - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesvalue_label_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_configuration` sub block.\n', args=[]), + new( + custom_label_configuration=null, + font_color=null, + font_configuration=null, + horizontal_position=null, + value_label_configuration=null, + vertical_position=null + ):: std.prune(a={ + custom_label_configuration: custom_label_configuration, + font_color: font_color, + font_configuration: font_configuration, + horizontal_position: horizontal_position, + value_label_configuration: value_label_configuration, + vertical_position: vertical_position, + }), + value_label_configuration:: { + format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_configuration` sub block.\n', args=[]), + new( + format_configuration=null, + relative_position=null + ):: std.prune(a={ + format_configuration: format_configuration, + relative_position: relative_position, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines`\nTerraform sub block.\n\n\n\n**Args**:\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_configurationnew) constructor.\n - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlabel_configurationnew) constructor.\n - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationstyle_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `reference_lines` sub block.\n', args=[]), + new( + data_configuration=null, + label_configuration=null, + status=null, + style_configuration=null + ):: std.prune(a={ + data_configuration: data_configuration, + label_configuration: label_configuration, + status: status, + style_configuration: style_configuration, + }), + style_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `style_configuration` sub block.\n', args=[]), + new( + color=null, + pattern=null + ):: std.prune(a={ + color: color, + pattern: pattern, + }), + }, + }, + sort_configuration:: { + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_sortnew) constructor.\n - `pagination_configuration` (`list[obj]`): Set the `pagination_configuration` field on the resulting object. When `null`, the `pagination_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationpagination_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_sort=null, + pagination_configuration=null + ):: std.prune(a={ + category_sort: category_sort, + pagination_configuration: pagination_configuration, + }), + pagination_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration.new` constructs a new object with attributes and blocks configured for the `pagination_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `page_number` (`number`): Set the `page_number` field on the resulting object.\n - `page_size` (`number`): Set the `page_size` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `pagination_configuration` sub block.\n', args=[]), + new( + page_number, + page_size + ):: std.prune(a={ + page_number: page_number, + page_size: page_size, + }), + }, + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.new` constructs a new object with attributes and blocks configured for the `box_plot_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `box_plot_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + combo_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + bar_data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.new` constructs a new object with attributes and blocks configured for the `bar_data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `bar_data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + category_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + color_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + field_wells:: { + combo_chart_aggregated_field_wells:: { + bar_values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.new` constructs a new object with attributes and blocks configured for the `bar_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `bar_values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + colors:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + line_values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.new` constructs a new object with attributes and blocks configured for the `line_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `line_values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `combo_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `bar_values` (`list[obj]`): Set the `bar_values` field on the resulting object. When `null`, the `bar_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellsbar_valuesnew) constructor.\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscolorsnew) constructor.\n - `line_values` (`list[obj]`): Set the `line_values` field on the resulting object. When `null`, the `line_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellsline_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `combo_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + bar_values=null, + category=null, + colors=null, + line_values=null + ):: std.prune(a={ + bar_values: bar_values, + category: category, + colors: colors, + line_values: line_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `combo_chart_aggregated_field_wells` (`list[obj]`): Set the `combo_chart_aggregated_field_wells` field on the resulting object. When `null`, the `combo_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcombo_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + combo_chart_aggregated_field_wells=null + ):: std.prune(a={ + combo_chart_aggregated_field_wells: combo_chart_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + line_data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.new` constructs a new object with attributes and blocks configured for the `line_data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `line_data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `bars_arrangement` (`string`): Set the `bars_arrangement` field on the resulting object. When `null`, the `bars_arrangement` field will be omitted from the resulting object.\n - `bar_data_labels` (`list[obj]`): Set the `bar_data_labels` field on the resulting object. When `null`, the `bar_data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualbar_data_labelsnew) constructor.\n - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcategory_axisnew) constructor.\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcategory_label_optionsnew) constructor.\n - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolor_label_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visuallegendnew) constructor.\n - `line_data_labels` (`list[obj]`): Set the `line_data_labels` field on the resulting object. When `null`, the `line_data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualline_data_labelsnew) constructor.\n - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualprimary_y_axis_display_optionsnew) constructor.\n - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualprimary_y_axis_label_optionsnew) constructor.\n - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualreference_linesnew) constructor.\n - `secondary_y_axis_display_options` (`list[obj]`): Set the `secondary_y_axis_display_options` field on the resulting object. When `null`, the `secondary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsecondary_y_axis_display_optionsnew) constructor.\n - `secondary_y_axis_label_options` (`list[obj]`): Set the `secondary_y_axis_label_options` field on the resulting object. When `null`, the `secondary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsecondary_y_axis_label_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + bar_data_labels=null, + bars_arrangement=null, + category_axis=null, + category_label_options=null, + color_label_options=null, + field_wells=null, + legend=null, + line_data_labels=null, + primary_y_axis_display_options=null, + primary_y_axis_label_options=null, + reference_lines=null, + secondary_y_axis_display_options=null, + secondary_y_axis_label_options=null, + sort_configuration=null, + tooltip=null, + visual_palette=null + ):: std.prune(a={ + bar_data_labels: bar_data_labels, + bars_arrangement: bars_arrangement, + category_axis: category_axis, + category_label_options: category_label_options, + color_label_options: color_label_options, + field_wells: field_wells, + legend: legend, + line_data_labels: line_data_labels, + primary_y_axis_display_options: primary_y_axis_display_options, + primary_y_axis_label_options: primary_y_axis_label_options, + reference_lines: reference_lines, + secondary_y_axis_display_options: secondary_y_axis_display_options, + secondary_y_axis_label_options: secondary_y_axis_label_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + visual_palette: visual_palette, + }), + primary_y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + primary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + reference_lines:: { + data_configuration:: { + dynamic_configuration:: { + calculation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `calculation` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + measure_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `measure_aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor.\n - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_configuration` sub block.\n', args=[]), + new( + calculation=null, + column=null, + measure_aggregation_function=null + ):: std.prune(a={ + calculation: calculation, + column: column, + measure_aggregation_function: measure_aggregation_function, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object.\n - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor.\n - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_configuration` sub block.\n', args=[]), + new( + axis_binding=null, + dynamic_configuration=null, + static_configuration=null + ):: std.prune(a={ + axis_binding: axis_binding, + dynamic_configuration: dynamic_configuration, + static_configuration: static_configuration, + }), + static_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `static_configuration` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + label_configuration:: { + custom_label_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_label_configuration` sub block.\n', args=[]), + new( + custom_label + ):: std.prune(a={ + custom_label: custom_label, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object.\n - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object.\n - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesfont_configurationnew) constructor.\n - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_configuration` sub block.\n', args=[]), + new( + custom_label_configuration=null, + font_color=null, + font_configuration=null, + horizontal_position=null, + value_label_configuration=null, + vertical_position=null + ):: std.prune(a={ + custom_label_configuration: custom_label_configuration, + font_color: font_color, + font_configuration: font_configuration, + horizontal_position: horizontal_position, + value_label_configuration: value_label_configuration, + vertical_position: vertical_position, + }), + value_label_configuration:: { + format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_configuration` sub block.\n', args=[]), + new( + format_configuration=null, + relative_position=null + ):: std.prune(a={ + format_configuration: format_configuration, + relative_position: relative_position, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines`\nTerraform sub block.\n\n\n\n**Args**:\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_configurationnew) constructor.\n - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_configurationnew) constructor.\n - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationstyle_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `reference_lines` sub block.\n', args=[]), + new( + data_configuration=null, + label_configuration=null, + status=null, + style_configuration=null + ):: std.prune(a={ + data_configuration: data_configuration, + label_configuration: label_configuration, + status: status, + style_configuration: style_configuration, + }), + style_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `style_configuration` sub block.\n', args=[]), + new( + color=null, + pattern=null + ):: std.prune(a={ + color: color, + pattern: pattern, + }), + }, + }, + secondary_y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `secondary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + secondary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `secondary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + color_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `color_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + color_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_sortnew) constructor.\n - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_items_limitnew) constructor.\n - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null, + color_items_limit=null, + color_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + color_items_limit: color_items_limit, + color_sort: color_sort, + }), + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.new` constructs a new object with attributes and blocks configured for the `combo_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `combo_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + custom_content_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `content_type` (`string`): Set the `content_type` field on the resulting object. When `null`, the `content_type` field will be omitted from the resulting object.\n - `content_url` (`string`): Set the `content_url` field on the resulting object. When `null`, the `content_url` field will be omitted from the resulting object.\n - `image_scaling` (`string`): Set the `image_scaling` field on the resulting object. When `null`, the `image_scaling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + content_type=null, + content_url=null, + image_scaling=null + ):: std.prune(a={ + content_type: content_type, + content_url: content_url, + image_scaling: image_scaling, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.new` constructs a new object with attributes and blocks configured for the `custom_content_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_content_visual` sub block.\n', args=[]), + new( + data_set_identifier, + visual_id, + actions=null, + chart_configuration=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + data_set_identifier: data_set_identifier, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + empty_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsempty_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.empty_visual.new` constructs a new object with attributes and blocks configured for the `empty_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `empty_visual` sub block.\n', args=[]), + new( + data_set_identifier, + visual_id, + actions=null + ):: std.prune(a={ + actions: actions, + data_set_identifier: data_set_identifier, + visual_id: visual_id, + }), + }, + filled_map_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + field_wells:: { + filled_map_aggregated_field_wells:: { + geospatial:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.new` constructs a new object with attributes and blocks configured for the `geospatial`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `geospatial` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `filled_map_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `geospatial` (`list[obj]`): Set the `geospatial` field on the resulting object. When `null`, the `geospatial` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsgeospatialnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filled_map_aggregated_field_wells` sub block.\n', args=[]), + new( + geospatial=null, + values=null + ):: std.prune(a={ + geospatial: geospatial, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `filled_map_aggregated_field_wells` (`list[obj]`): Set the `filled_map_aggregated_field_wells` field on the resulting object. When `null`, the `filled_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfilled_map_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + filled_map_aggregated_field_wells=null + ):: std.prune(a={ + filled_map_aggregated_field_wells: filled_map_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + map_style_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options.new` constructs a new object with attributes and blocks configured for the `map_style_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `base_map_style` (`string`): Set the `base_map_style` field on the resulting object. When `null`, the `base_map_style` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `map_style_options` sub block.\n', args=[]), + new( + base_map_style=null + ):: std.prune(a={ + base_map_style: base_map_style, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visuallegendnew) constructor.\n - `map_style_options` (`list[obj]`): Set the `map_style_options` field on the resulting object. When `null`, the `map_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualmap_style_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualtooltipnew) constructor.\n - `window_options` (`list[obj]`): Set the `window_options` field on the resulting object. When `null`, the `window_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualwindow_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + field_wells=null, + legend=null, + map_style_options=null, + sort_configuration=null, + tooltip=null, + window_options=null + ):: std.prune(a={ + field_wells: field_wells, + legend: legend, + map_style_options: map_style_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + window_options: window_options, + }), + sort_configuration:: { + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationcategory_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_sort=null + ):: std.prune(a={ + category_sort: category_sort, + }), + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + window_options:: { + bounds:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds.new` constructs a new object with attributes and blocks configured for the `bounds`\nTerraform sub block.\n\n\n\n**Args**:\n - `east` (`number`): Set the `east` field on the resulting object.\n - `north` (`number`): Set the `north` field on the resulting object.\n - `south` (`number`): Set the `south` field on the resulting object.\n - `west` (`number`): Set the `west` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bounds` sub block.\n', args=[]), + new( + east, + north, + south, + west + ):: std.prune(a={ + east: east, + north: north, + south: south, + west: west, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.new` constructs a new object with attributes and blocks configured for the `window_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_zoom_mode` (`string`): Set the `map_zoom_mode` field on the resulting object. When `null`, the `map_zoom_mode` field will be omitted from the resulting object.\n - `bounds` (`list[obj]`): Set the `bounds` field on the resulting object. When `null`, the `bounds` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationboundsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `window_options` sub block.\n', args=[]), + new( + bounds=null, + map_zoom_mode=null + ):: std.prune(a={ + bounds: bounds, + map_zoom_mode: map_zoom_mode, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + conditional_formatting:: { + conditional_formatting_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `shape` (`list[obj]`): Set the `shape` field on the resulting object. When `null`, the `shape` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingshapenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting_options` sub block.\n', args=[]), + new( + shape=null + ):: std.prune(a={ + shape: shape, + }), + shape:: { + format:: { + background_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `background_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.new` constructs a new object with attributes and blocks configured for the `format`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapebackground_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format` sub block.\n', args=[]), + new( + background_color=null + ):: std.prune(a={ + background_color: background_color, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.new` constructs a new object with attributes and blocks configured for the `shape`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `format` (`list[obj]`): Set the `format` field on the resulting object. When `null`, the `format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsformatnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `shape` sub block.\n', args=[]), + new( + field_id, + format=null + ):: std.prune(a={ + field_id: field_id, + format: format, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting`\nTerraform sub block.\n\n\n\n**Args**:\n - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formatting_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting` sub block.\n', args=[]), + new( + conditional_formatting_options=null + ):: std.prune(a={ + conditional_formatting_options: conditional_formatting_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.new` constructs a new object with attributes and blocks configured for the `filled_map_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filled_map_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + conditional_formatting=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + conditional_formatting: conditional_formatting, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + funnel_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + data_label_options:: { + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.new` constructs a new object with attributes and blocks configured for the `data_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `measure_data_label_style` (`string`): Set the `measure_data_label_style` field on the resulting object. When `null`, the `measure_data_label_style` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_options` sub block.\n', args=[]), + new( + category_label_visibility=null, + label_color=null, + label_font_configuration=null, + measure_data_label_style=null, + measure_label_visibility=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + label_color: label_color, + label_font_configuration: label_font_configuration, + measure_data_label_style: measure_data_label_style, + measure_label_visibility: measure_label_visibility, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + funnel_chart_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `funnel_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `funnel_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + values=null + ):: std.prune(a={ + category: category, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `funnel_chart_aggregated_field_wells` (`list[obj]`): Set the `funnel_chart_aggregated_field_wells` field on the resulting object. When `null`, the `funnel_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfunnel_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + funnel_chart_aggregated_field_wells=null + ):: std.prune(a={ + funnel_chart_aggregated_field_wells: funnel_chart_aggregated_field_wells, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcategory_label_optionsnew) constructor.\n - `data_label_options` (`list[obj]`): Set the `data_label_options` field on the resulting object. When `null`, the `data_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualdata_label_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualfield_wellsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualtooltipnew) constructor.\n - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualvalue_label_optionsnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + category_label_options=null, + data_label_options=null, + field_wells=null, + sort_configuration=null, + tooltip=null, + value_label_options=null, + visual_palette=null + ):: std.prune(a={ + category_label_options: category_label_options, + data_label_options: data_label_options, + field_wells: field_wells, + sort_configuration: sort_configuration, + tooltip: tooltip, + value_label_options: value_label_options, + visual_palette: visual_palette, + }), + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + }), + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + value_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.new` constructs a new object with attributes and blocks configured for the `funnel_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `funnel_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + gauge_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_values` (`list[obj]`): Set the `target_values` field on the resulting object. When `null`, the `target_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtarget_valuesnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + target_values=null, + values=null + ):: std.prune(a={ + target_values: target_values, + values: values, + }), + target_values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.new` constructs a new object with attributes and blocks configured for the `target_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + gauge_chart_options:: { + arc:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc.new` constructs a new object with attributes and blocks configured for the `arc`\nTerraform sub block.\n\n\n\n**Args**:\n - `arc_angle` (`number`): Set the `arc_angle` field on the resulting object. When `null`, the `arc_angle` field will be omitted from the resulting object.\n - `arc_thickness` (`string`): Set the `arc_thickness` field on the resulting object. When `null`, the `arc_thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `arc` sub block.\n', args=[]), + new( + arc_angle=null, + arc_thickness=null + ):: std.prune(a={ + arc_angle: arc_angle, + arc_thickness: arc_thickness, + }), + }, + arc_axis:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.new` constructs a new object with attributes and blocks configured for the `arc_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `reserve_range` (`number`): Set the `reserve_range` field on the resulting object. When `null`, the `reserve_range` field will be omitted from the resulting object.\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsrangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `arc_axis` sub block.\n', args=[]), + new( + range=null, + reserve_range=null + ):: std.prune(a={ + range: range, + reserve_range: reserve_range, + }), + range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `max` (`number`): Set the `max` field on the resulting object. When `null`, the `max` field will be omitted from the resulting object.\n - `min` (`number`): Set the `min` field on the resulting object. When `null`, the `min` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + max=null, + min=null + ):: std.prune(a={ + max: max, + min: min, + }), + }, + }, + comparison:: { + comparison_format:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.new` constructs a new object with attributes and blocks configured for the `comparison_format`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisonnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisonpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `comparison_format` sub block.\n', args=[]), + new( + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.new` constructs a new object with attributes and blocks configured for the `comparison`\nTerraform sub block.\n\n\n\n**Args**:\n - `comparison_method` (`string`): Set the `comparison_method` field on the resulting object. When `null`, the `comparison_method` field will be omitted from the resulting object.\n - `comparison_format` (`list[obj]`): Set the `comparison_format` field on the resulting object. When `null`, the `comparison_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparison_formatnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `comparison` sub block.\n', args=[]), + new( + comparison_format=null, + comparison_method=null + ):: std.prune(a={ + comparison_format: comparison_format, + comparison_method: comparison_method, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.new` constructs a new object with attributes and blocks configured for the `gauge_chart_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `primary_value_display_type` (`string`): Set the `primary_value_display_type` field on the resulting object. When `null`, the `primary_value_display_type` field will be omitted from the resulting object.\n - `arc` (`list[obj]`): Set the `arc` field on the resulting object. When `null`, the `arc` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationarcnew) constructor.\n - `arc_axis` (`list[obj]`): Set the `arc_axis` field on the resulting object. When `null`, the `arc_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationarc_axisnew) constructor.\n - `comparison` (`list[obj]`): Set the `comparison` field on the resulting object. When `null`, the `comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationcomparisonnew) constructor.\n - `primary_value_font_configuration` (`list[obj]`): Set the `primary_value_font_configuration` field on the resulting object. When `null`, the `primary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationprimary_value_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gauge_chart_options` sub block.\n', args=[]), + new( + arc=null, + arc_axis=null, + comparison=null, + primary_value_display_type=null, + primary_value_font_configuration=null + ):: std.prune(a={ + arc: arc, + arc_axis: arc_axis, + comparison: comparison, + primary_value_display_type: primary_value_display_type, + primary_value_font_configuration: primary_value_font_configuration, + }), + primary_value_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `primary_value_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_value_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualfield_wellsnew) constructor.\n - `gauge_chart_options` (`list[obj]`): Set the `gauge_chart_options` field on the resulting object. When `null`, the `gauge_chart_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualgauge_chart_optionsnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + data_labels=null, + field_wells=null, + gauge_chart_options=null, + tooltip=null, + visual_palette=null + ):: std.prune(a={ + data_labels: data_labels, + field_wells: field_wells, + gauge_chart_options: gauge_chart_options, + tooltip: tooltip, + visual_palette: visual_palette, + }), + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + conditional_formatting:: { + conditional_formatting_options:: { + arc:: { + foreground_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.new` constructs a new object with attributes and blocks configured for the `foreground_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `foreground_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.new` constructs a new object with attributes and blocks configured for the `arc`\nTerraform sub block.\n\n\n\n**Args**:\n - `foreground_color` (`list[obj]`): Set the `foreground_color` field on the resulting object. When `null`, the `foreground_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsforeground_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `arc` sub block.\n', args=[]), + new( + foreground_color=null + ):: std.prune(a={ + foreground_color: foreground_color, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `arc` (`list[obj]`): Set the `arc` field on the resulting object. When `null`, the `arc` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingarcnew) constructor.\n - `primary_value` (`list[obj]`): Set the `primary_value` field on the resulting object. When `null`, the `primary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingprimary_valuenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting_options` sub block.\n', args=[]), + new( + arc=null, + primary_value=null + ):: std.prune(a={ + arc: arc, + primary_value: primary_value, + }), + primary_value:: { + icon:: { + custom_condition:: { + display_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `display_configuration` sub block.\n', args=[]), + new( + icon_display_option=null + ):: std.prune(a={ + icon_display_option: icon_display_option, + }), + }, + icon_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object.\n - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_options` sub block.\n', args=[]), + new( + icon=null, + unicode_icon=null + ):: std.prune(a={ + icon: icon, + unicode_icon: unicode_icon, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueicondisplay_configurationnew) constructor.\n - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_condition` sub block.\n', args=[]), + new( + expression, + color=null, + display_configuration=null, + icon_options=null + ):: std.prune(a={ + color: color, + display_configuration: display_configuration, + expression: expression, + icon_options: icon_options, + }), + }, + icon_set:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_set` sub block.\n', args=[]), + new( + expression, + icon_set_type=null + ):: std.prune(a={ + expression: expression, + icon_set_type: icon_set_type, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new` constructs a new object with attributes and blocks configured for the `icon`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuecustom_conditionnew) constructor.\n - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueicon_setnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `icon` sub block.\n', args=[]), + new( + custom_condition=null, + icon_set=null + ):: std.prune(a={ + custom_condition: custom_condition, + icon_set: icon_set, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.new` constructs a new object with attributes and blocks configured for the `primary_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsiconnew) constructor.\n - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_value` sub block.\n', args=[]), + new( + icon=null, + text_color=null + ):: std.prune(a={ + icon: icon, + text_color: text_color, + }), + text_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new` constructs a new object with attributes and blocks configured for the `text_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuegradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuesolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting`\nTerraform sub block.\n\n\n\n**Args**:\n - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formatting_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting` sub block.\n', args=[]), + new( + conditional_formatting_options=null + ):: std.prune(a={ + conditional_formatting_options: conditional_formatting_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.new` constructs a new object with attributes and blocks configured for the `gauge_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gauge_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + conditional_formatting=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + conditional_formatting: conditional_formatting, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + geospatial_map_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + field_wells:: { + geospatial_map_aggregated_field_wells:: { + colors:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + geospatial:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.new` constructs a new object with attributes and blocks configured for the `geospatial`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `geospatial` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `geospatial_map_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellscolorsnew) constructor.\n - `geospatial` (`list[obj]`): Set the `geospatial` field on the resulting object. When `null`, the `geospatial` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatialnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `geospatial_map_aggregated_field_wells` sub block.\n', args=[]), + new( + colors=null, + geospatial=null, + values=null + ):: std.prune(a={ + colors: colors, + geospatial: geospatial, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `geospatial_map_aggregated_field_wells` (`list[obj]`): Set the `geospatial_map_aggregated_field_wells` field on the resulting object. When `null`, the `geospatial_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationgeospatial_map_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + geospatial_map_aggregated_field_wells=null + ):: std.prune(a={ + geospatial_map_aggregated_field_wells: geospatial_map_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + map_style_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options.new` constructs a new object with attributes and blocks configured for the `map_style_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `base_map_style` (`string`): Set the `base_map_style` field on the resulting object. When `null`, the `base_map_style` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `map_style_options` sub block.\n', args=[]), + new( + base_map_style=null + ):: std.prune(a={ + base_map_style: base_map_style, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visuallegendnew) constructor.\n - `map_style_options` (`list[obj]`): Set the `map_style_options` field on the resulting object. When `null`, the `map_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualmap_style_optionsnew) constructor.\n - `point_style_options` (`list[obj]`): Set the `point_style_options` field on the resulting object. When `null`, the `point_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualpoint_style_optionsnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualvisual_palettenew) constructor.\n - `window_options` (`list[obj]`): Set the `window_options` field on the resulting object. When `null`, the `window_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualwindow_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + field_wells=null, + legend=null, + map_style_options=null, + point_style_options=null, + tooltip=null, + visual_palette=null, + window_options=null + ):: std.prune(a={ + field_wells: field_wells, + legend: legend, + map_style_options: map_style_options, + point_style_options: point_style_options, + tooltip: tooltip, + visual_palette: visual_palette, + window_options: window_options, + }), + point_style_options:: { + cluster_marker_configuration:: { + cluster_marker:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.new` constructs a new object with attributes and blocks configured for the `cluster_marker`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_cluster_marker` (`list[obj]`): Set the `simple_cluster_marker` field on the resulting object. When `null`, the `simple_cluster_marker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationsimple_cluster_markernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cluster_marker` sub block.\n', args=[]), + new( + simple_cluster_marker=null + ):: std.prune(a={ + simple_cluster_marker: simple_cluster_marker, + }), + simple_cluster_marker:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker.new` constructs a new object with attributes and blocks configured for the `simple_cluster_marker`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `simple_cluster_marker` sub block.\n', args=[]), + new( + color=null + ):: std.prune(a={ + color: color, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.new` constructs a new object with attributes and blocks configured for the `cluster_marker_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `cluster_marker` (`list[obj]`): Set the `cluster_marker` field on the resulting object. When `null`, the `cluster_marker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_markernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cluster_marker_configuration` sub block.\n', args=[]), + new( + cluster_marker=null + ):: std.prune(a={ + cluster_marker: cluster_marker, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.new` constructs a new object with attributes and blocks configured for the `point_style_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_point_style` (`string`): Set the `selected_point_style` field on the resulting object. When `null`, the `selected_point_style` field will be omitted from the resulting object.\n - `cluster_marker_configuration` (`list[obj]`): Set the `cluster_marker_configuration` field on the resulting object. When `null`, the `cluster_marker_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationcluster_marker_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `point_style_options` sub block.\n', args=[]), + new( + cluster_marker_configuration=null, + selected_point_style=null + ):: std.prune(a={ + cluster_marker_configuration: cluster_marker_configuration, + selected_point_style: selected_point_style, + }), + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + window_options:: { + bounds:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds.new` constructs a new object with attributes and blocks configured for the `bounds`\nTerraform sub block.\n\n\n\n**Args**:\n - `east` (`number`): Set the `east` field on the resulting object.\n - `north` (`number`): Set the `north` field on the resulting object.\n - `south` (`number`): Set the `south` field on the resulting object.\n - `west` (`number`): Set the `west` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bounds` sub block.\n', args=[]), + new( + east, + north, + south, + west + ):: std.prune(a={ + east: east, + north: north, + south: south, + west: west, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.new` constructs a new object with attributes and blocks configured for the `window_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_zoom_mode` (`string`): Set the `map_zoom_mode` field on the resulting object. When `null`, the `map_zoom_mode` field will be omitted from the resulting object.\n - `bounds` (`list[obj]`): Set the `bounds` field on the resulting object. When `null`, the `bounds` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationboundsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `window_options` sub block.\n', args=[]), + new( + bounds=null, + map_zoom_mode=null + ):: std.prune(a={ + bounds: bounds, + map_zoom_mode: map_zoom_mode, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.new` constructs a new object with attributes and blocks configured for the `geospatial_map_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `geospatial_map_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + heat_map_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + color_scale:: { + colors:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.new` constructs a new object with attributes and blocks configured for the `color_scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `color_fill_type` (`string`): Set the `color_fill_type` field on the resulting object.\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolorsnew) constructor.\n - `null_value_color` (`list[obj]`): Set the `null_value_color` field on the resulting object. When `null`, the `null_value_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationnull_value_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_scale` sub block.\n', args=[]), + new( + color_fill_type, + colors=null, + null_value_color=null + ):: std.prune(a={ + color_fill_type: color_fill_type, + colors: colors, + null_value_color: null_value_color, + }), + null_value_color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color.new` constructs a new object with attributes and blocks configured for the `null_value_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_color` sub block.\n', args=[]), + new( + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + }), + }, + }, + column_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.new` constructs a new object with attributes and blocks configured for the `column_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + heat_map_aggregated_field_wells:: { + columns:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `heat_map_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellscolumnsnew) constructor.\n - `rows` (`list[obj]`): Set the `rows` field on the resulting object. When `null`, the `rows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsrowsnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `heat_map_aggregated_field_wells` sub block.\n', args=[]), + new( + columns=null, + rows=null, + values=null + ):: std.prune(a={ + columns: columns, + rows: rows, + values: values, + }), + rows:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.new` constructs a new object with attributes and blocks configured for the `rows`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rows` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `heat_map_aggregated_field_wells` (`list[obj]`): Set the `heat_map_aggregated_field_wells` field on the resulting object. When `null`, the `heat_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + heat_map_aggregated_field_wells=null + ):: std.prune(a={ + heat_map_aggregated_field_wells: heat_map_aggregated_field_wells, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color_scale` (`list[obj]`): Set the `color_scale` field on the resulting object. When `null`, the `color_scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolor_scalenew) constructor.\n - `column_label_options` (`list[obj]`): Set the `column_label_options` field on the resulting object. When `null`, the `column_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_label_optionsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsheat_map_visuallegendnew) constructor.\n - `row_label_options` (`list[obj]`): Set the `row_label_options` field on the resulting object. When `null`, the `row_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualrow_label_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualtooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + color_scale=null, + column_label_options=null, + data_labels=null, + field_wells=null, + legend=null, + row_label_options=null, + sort_configuration=null, + tooltip=null + ):: std.prune(a={ + color_scale: color_scale, + column_label_options: column_label_options, + data_labels: data_labels, + field_wells: field_wells, + legend: legend, + row_label_options: row_label_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + }), + row_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.new` constructs a new object with attributes and blocks configured for the `row_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + sort_configuration:: { + heat_map_column_items_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `heat_map_column_items_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `heat_map_column_items_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + heat_map_column_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.new` constructs a new object with attributes and blocks configured for the `heat_map_column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `heat_map_column_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + heat_map_row_items_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `heat_map_row_items_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `heat_map_row_items_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + heat_map_row_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.new` constructs a new object with attributes and blocks configured for the `heat_map_row_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `heat_map_row_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `heat_map_column_items_limit_configuration` (`list[obj]`): Set the `heat_map_column_items_limit_configuration` field on the resulting object. When `null`, the `heat_map_column_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_column_items_limit_configurationnew) constructor.\n - `heat_map_column_sort` (`list[obj]`): Set the `heat_map_column_sort` field on the resulting object. When `null`, the `heat_map_column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_column_sortnew) constructor.\n - `heat_map_row_items_limit_configuration` (`list[obj]`): Set the `heat_map_row_items_limit_configuration` field on the resulting object. When `null`, the `heat_map_row_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_row_items_limit_configurationnew) constructor.\n - `heat_map_row_sort` (`list[obj]`): Set the `heat_map_row_sort` field on the resulting object. When `null`, the `heat_map_row_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_row_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + heat_map_column_items_limit_configuration=null, + heat_map_column_sort=null, + heat_map_row_items_limit_configuration=null, + heat_map_row_sort=null + ):: std.prune(a={ + heat_map_column_items_limit_configuration: heat_map_column_items_limit_configuration, + heat_map_column_sort: heat_map_column_sort, + heat_map_row_items_limit_configuration: heat_map_row_items_limit_configuration, + heat_map_row_sort: heat_map_row_sort, + }), + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.new` constructs a new object with attributes and blocks configured for the `heat_map_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `heat_map_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + histogram_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualshistogram_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + bin_options:: { + bin_count:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count.new` constructs a new object with attributes and blocks configured for the `bin_count`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bin_count` sub block.\n', args=[]), + new( + value=null + ):: std.prune(a={ + value: value, + }), + }, + bin_width:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width.new` constructs a new object with attributes and blocks configured for the `bin_width`\nTerraform sub block.\n\n\n\n**Args**:\n - `bin_count_limit` (`number`): Set the `bin_count_limit` field on the resulting object. When `null`, the `bin_count_limit` field will be omitted from the resulting object.\n - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bin_width` sub block.\n', args=[]), + new( + bin_count_limit=null, + value=null + ):: std.prune(a={ + bin_count_limit: bin_count_limit, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.new` constructs a new object with attributes and blocks configured for the `bin_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_bin_type` (`string`): Set the `selected_bin_type` field on the resulting object. When `null`, the `selected_bin_type` field will be omitted from the resulting object.\n - `start_value` (`number`): Set the `start_value` field on the resulting object. When `null`, the `start_value` field will be omitted from the resulting object.\n - `bin_count` (`list[obj]`): Set the `bin_count` field on the resulting object. When `null`, the `bin_count` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationbin_countnew) constructor.\n - `bin_width` (`list[obj]`): Set the `bin_width` field on the resulting object. When `null`, the `bin_width` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationbin_widthnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `bin_options` sub block.\n', args=[]), + new( + bin_count=null, + bin_width=null, + selected_bin_type=null, + start_value=null + ):: std.prune(a={ + bin_count: bin_count, + bin_width: bin_width, + selected_bin_type: selected_bin_type, + start_value: start_value, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + histogram_aggregated_field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `histogram_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `histogram_aggregated_field_wells` sub block.\n', args=[]), + new( + values=null + ):: std.prune(a={ + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `histogram_aggregated_field_wells` (`list[obj]`): Set the `histogram_aggregated_field_wells` field on the resulting object. When `null`, the `histogram_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationhistogram_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + histogram_aggregated_field_wells=null + ):: std.prune(a={ + histogram_aggregated_field_wells: histogram_aggregated_field_wells, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `bin_options` (`list[obj]`): Set the `bin_options` field on the resulting object. When `null`, the `bin_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualbin_optionsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualshistogram_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualshistogram_visualfield_wellsnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualshistogram_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualshistogram_visualvisual_palettenew) constructor.\n - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualx_axis_display_optionsnew) constructor.\n - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualx_axis_label_optionsnew) constructor.\n - `y_axis_display_options` (`list[obj]`): Set the `y_axis_display_options` field on the resulting object. When `null`, the `y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualy_axis_display_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + bin_options=null, + data_labels=null, + field_wells=null, + tooltip=null, + visual_palette=null, + x_axis_display_options=null, + x_axis_label_options=null, + y_axis_display_options=null + ):: std.prune(a={ + bin_options: bin_options, + data_labels: data_labels, + field_wells: field_wells, + tooltip: tooltip, + visual_palette: visual_palette, + x_axis_display_options: x_axis_display_options, + x_axis_label_options: x_axis_label_options, + y_axis_display_options: y_axis_display_options, + }), + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + x_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + x_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.new` constructs a new object with attributes and blocks configured for the `histogram_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `histogram_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualshistogram_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualshistogram_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + insight_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsinsight_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + insight_configuration:: { + computation:: { + forecast:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.new` constructs a new object with attributes and blocks configured for the `forecast`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `custom_seasonality_value` (`number`): Set the `custom_seasonality_value` field on the resulting object. When `null`, the `custom_seasonality_value` field will be omitted from the resulting object.\n - `lower_boundary` (`number`): Set the `lower_boundary` field on the resulting object. When `null`, the `lower_boundary` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `periods_backward` (`number`): Set the `periods_backward` field on the resulting object. When `null`, the `periods_backward` field will be omitted from the resulting object.\n - `periods_forward` (`number`): Set the `periods_forward` field on the resulting object. When `null`, the `periods_forward` field will be omitted from the resulting object.\n - `prediction_interval` (`number`): Set the `prediction_interval` field on the resulting object. When `null`, the `prediction_interval` field will be omitted from the resulting object.\n - `seasonality` (`string`): Set the `seasonality` field on the resulting object.\n - `upper_boundary` (`number`): Set the `upper_boundary` field on the resulting object. When `null`, the `upper_boundary` field will be omitted from the resulting object.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `forecast` sub block.\n', args=[]), + new( + computation_id, + seasonality, + custom_seasonality_value=null, + lower_boundary=null, + name=null, + periods_backward=null, + periods_forward=null, + prediction_interval=null, + time=null, + upper_boundary=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + custom_seasonality_value: custom_seasonality_value, + lower_boundary: lower_boundary, + name: name, + periods_backward: periods_backward, + periods_forward: periods_forward, + prediction_interval: prediction_interval, + seasonality: seasonality, + time: time, + upper_boundary: upper_boundary, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + growth_rate:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.new` constructs a new object with attributes and blocks configured for the `growth_rate`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `period_size` (`number`): Set the `period_size` field on the resulting object. When `null`, the `period_size` field will be omitted from the resulting object.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `growth_rate` sub block.\n', args=[]), + new( + computation_id, + name=null, + period_size=null, + time=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + name: name, + period_size: period_size, + time: time, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratedate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratenumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratedate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratenumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + maximum_minimum:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.new` constructs a new object with attributes and blocks configured for the `maximum_minimum`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `maximum_minimum` sub block.\n', args=[]), + new( + computation_id, + type, + name=null, + time=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + name: name, + time: time, + type: type, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + metric_comparison:: { + from_value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.new` constructs a new object with attributes and blocks configured for the `from_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `from_value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.new` constructs a new object with attributes and blocks configured for the `metric_comparison`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `from_value` (`list[obj]`): Set the `from_value` field on the resulting object. When `null`, the `from_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationfrom_valuenew) constructor.\n - `target_value` (`list[obj]`): Set the `target_value` field on the resulting object. When `null`, the `target_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtarget_valuenew) constructor.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `metric_comparison` sub block.\n', args=[]), + new( + computation_id, + from_value=null, + name=null, + target_value=null, + time=null + ):: std.prune(a={ + computation_id: computation_id, + from_value: from_value, + name: name, + target_value: target_value, + time: time, + }), + target_value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.new` constructs a new object with attributes and blocks configured for the `target_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.new` constructs a new object with attributes and blocks configured for the `computation`\nTerraform sub block.\n\n\n\n**Args**:\n - `forecast` (`list[obj]`): Set the `forecast` field on the resulting object. When `null`, the `forecast` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationforecastnew) constructor.\n - `growth_rate` (`list[obj]`): Set the `growth_rate` field on the resulting object. When `null`, the `growth_rate` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationgrowth_ratenew) constructor.\n - `maximum_minimum` (`list[obj]`): Set the `maximum_minimum` field on the resulting object. When `null`, the `maximum_minimum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationmaximum_minimumnew) constructor.\n - `metric_comparison` (`list[obj]`): Set the `metric_comparison` field on the resulting object. When `null`, the `metric_comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationmetric_comparisonnew) constructor.\n - `period_over_period` (`list[obj]`): Set the `period_over_period` field on the resulting object. When `null`, the `period_over_period` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationperiod_over_periodnew) constructor.\n - `period_to_date` (`list[obj]`): Set the `period_to_date` field on the resulting object. When `null`, the `period_to_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationperiod_to_datenew) constructor.\n - `top_bottom_movers` (`list[obj]`): Set the `top_bottom_movers` field on the resulting object. When `null`, the `top_bottom_movers` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtop_bottom_moversnew) constructor.\n - `top_bottom_ranked` (`list[obj]`): Set the `top_bottom_ranked` field on the resulting object. When `null`, the `top_bottom_ranked` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtop_bottom_rankednew) constructor.\n - `total_aggregation` (`list[obj]`): Set the `total_aggregation` field on the resulting object. When `null`, the `total_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtotal_aggregationnew) constructor.\n - `unique_values` (`list[obj]`): Set the `unique_values` field on the resulting object. When `null`, the `unique_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationunique_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `computation` sub block.\n', args=[]), + new( + forecast=null, + growth_rate=null, + maximum_minimum=null, + metric_comparison=null, + period_over_period=null, + period_to_date=null, + top_bottom_movers=null, + top_bottom_ranked=null, + total_aggregation=null, + unique_values=null + ):: std.prune(a={ + forecast: forecast, + growth_rate: growth_rate, + maximum_minimum: maximum_minimum, + metric_comparison: metric_comparison, + period_over_period: period_over_period, + period_to_date: period_to_date, + top_bottom_movers: top_bottom_movers, + top_bottom_ranked: top_bottom_ranked, + total_aggregation: total_aggregation, + unique_values: unique_values, + }), + period_over_period:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.new` constructs a new object with attributes and blocks configured for the `period_over_period`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `period_over_period` sub block.\n', args=[]), + new( + computation_id, + name=null, + time=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + name: name, + time: time, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_perioddate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_perioddate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + period_to_date:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.new` constructs a new object with attributes and blocks configured for the `period_to_date`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `period_time_granularity` (`string`): Set the `period_time_granularity` field on the resulting object.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `period_to_date` sub block.\n', args=[]), + new( + computation_id, + period_time_granularity, + name=null, + time=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + name: name, + period_time_granularity: period_time_granularity, + time: time, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datedate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datenumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datedate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datenumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + top_bottom_movers:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.new` constructs a new object with attributes and blocks configured for the `top_bottom_movers`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `mover_size` (`number`): Set the `mover_size` field on the resulting object. When `null`, the `mover_size` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `sort_order` (`string`): Set the `sort_order` field on the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor.\n - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `top_bottom_movers` sub block.\n', args=[]), + new( + computation_id, + sort_order, + type, + category=null, + mover_size=null, + name=null, + time=null, + value=null + ):: std.prune(a={ + category: category, + computation_id: computation_id, + mover_size: mover_size, + name: name, + sort_order: sort_order, + time: time, + type: type, + value: value, + }), + time:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.new` constructs a new object with attributes and blocks configured for the `time`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + top_bottom_ranked:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankeddate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankednumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.new` constructs a new object with attributes and blocks configured for the `top_bottom_ranked`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `result_size` (`number`): Set the `result_size` field on the resulting object. When `null`, the `result_size` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `top_bottom_ranked` sub block.\n', args=[]), + new( + computation_id, + type, + category=null, + name=null, + result_size=null, + value=null + ):: std.prune(a={ + category: category, + computation_id: computation_id, + name: name, + result_size: result_size, + type: type, + value: value, + }), + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankeddate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankednumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + total_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.new` constructs a new object with attributes and blocks configured for the `total_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_aggregation` sub block.\n', args=[]), + new( + computation_id, + name=null, + value=null + ):: std.prune(a={ + computation_id: computation_id, + name: name, + value: value, + }), + value:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationcalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationcategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + unique_values:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuesdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuesnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.new` constructs a new object with attributes and blocks configured for the `unique_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation_id` (`string`): Set the `computation_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `unique_values` sub block.\n', args=[]), + new( + computation_id, + category=null, + name=null + ):: std.prune(a={ + category: category, + computation_id: computation_id, + name: name, + }), + }, + }, + custom_narrative:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative.new` constructs a new object with attributes and blocks configured for the `custom_narrative`\nTerraform sub block.\n\n\n\n**Args**:\n - `narrative` (`string`): Set the `narrative` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_narrative` sub block.\n', args=[]), + new( + narrative + ):: std.prune(a={ + narrative: narrative, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.new` constructs a new object with attributes and blocks configured for the `insight_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `computation` (`list[obj]`): Set the `computation` field on the resulting object. When `null`, the `computation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualcomputationnew) constructor.\n - `custom_narrative` (`list[obj]`): Set the `custom_narrative` field on the resulting object. When `null`, the `custom_narrative` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative.new](#fn-definitiondefinitionsheetsvisualsinsight_visualcustom_narrativenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `insight_configuration` sub block.\n', args=[]), + new( + computation=null, + custom_narrative=null + ):: std.prune(a={ + computation: computation, + custom_narrative: custom_narrative, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.new` constructs a new object with attributes and blocks configured for the `insight_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `insight_configuration` (`list[obj]`): Set the `insight_configuration` field on the resulting object. When `null`, the `insight_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_configurationnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `insight_visual` sub block.\n', args=[]), + new( + data_set_identifier, + visual_id, + actions=null, + insight_configuration=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + data_set_identifier: data_set_identifier, + insight_configuration: insight_configuration, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsinsight_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.insight_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsinsight_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + kpi_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualskpi_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_values` (`list[obj]`): Set the `target_values` field on the resulting object. When `null`, the `target_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtarget_valuesnew) constructor.\n - `trend_groups` (`list[obj]`): Set the `trend_groups` field on the resulting object. When `null`, the `trend_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_groupsnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + target_values=null, + trend_groups=null, + values=null + ):: std.prune(a={ + target_values: target_values, + trend_groups: trend_groups, + values: values, + }), + target_values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.new` constructs a new object with attributes and blocks configured for the `target_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + trend_groups:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.new` constructs a new object with attributes and blocks configured for the `trend_groups`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `trend_groups` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + kpi_options:: { + comparison:: { + comparison_format:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.new` constructs a new object with attributes and blocks configured for the `comparison_format`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisonnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisonpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `comparison_format` sub block.\n', args=[]), + new( + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.new` constructs a new object with attributes and blocks configured for the `comparison`\nTerraform sub block.\n\n\n\n**Args**:\n - `comparison_method` (`string`): Set the `comparison_method` field on the resulting object. When `null`, the `comparison_method` field will be omitted from the resulting object.\n - `comparison_format` (`list[obj]`): Set the `comparison_format` field on the resulting object. When `null`, the `comparison_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparison_formatnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `comparison` sub block.\n', args=[]), + new( + comparison_format=null, + comparison_method=null + ):: std.prune(a={ + comparison_format: comparison_format, + comparison_method: comparison_method, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.new` constructs a new object with attributes and blocks configured for the `kpi_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `primary_value_display_type` (`string`): Set the `primary_value_display_type` field on the resulting object. When `null`, the `primary_value_display_type` field will be omitted from the resulting object.\n - `comparison` (`list[obj]`): Set the `comparison` field on the resulting object. When `null`, the `comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationcomparisonnew) constructor.\n - `primary_value_font_configuration` (`list[obj]`): Set the `primary_value_font_configuration` field on the resulting object. When `null`, the `primary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationprimary_value_font_configurationnew) constructor.\n - `progress_bar` (`list[obj]`): Set the `progress_bar` field on the resulting object. When `null`, the `progress_bar` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationprogress_barnew) constructor.\n - `secondary_value` (`list[obj]`): Set the `secondary_value` field on the resulting object. When `null`, the `secondary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsecondary_valuenew) constructor.\n - `secondary_value_font_configuration` (`list[obj]`): Set the `secondary_value_font_configuration` field on the resulting object. When `null`, the `secondary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsecondary_value_font_configurationnew) constructor.\n - `trend_arrows` (`list[obj]`): Set the `trend_arrows` field on the resulting object. When `null`, the `trend_arrows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_arrowsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `kpi_options` sub block.\n', args=[]), + new( + comparison=null, + primary_value_display_type=null, + primary_value_font_configuration=null, + progress_bar=null, + secondary_value=null, + secondary_value_font_configuration=null, + trend_arrows=null + ):: std.prune(a={ + comparison: comparison, + primary_value_display_type: primary_value_display_type, + primary_value_font_configuration: primary_value_font_configuration, + progress_bar: progress_bar, + secondary_value: secondary_value, + secondary_value_font_configuration: secondary_value_font_configuration, + trend_arrows: trend_arrows, + }), + primary_value_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `primary_value_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_value_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + progress_bar:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar.new` constructs a new object with attributes and blocks configured for the `progress_bar`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `progress_bar` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + secondary_value:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value.new` constructs a new object with attributes and blocks configured for the `secondary_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `secondary_value` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + secondary_value_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `secondary_value_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `secondary_value_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + trend_arrows:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows.new` constructs a new object with attributes and blocks configured for the `trend_arrows`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `trend_arrows` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualskpi_visualfield_wellsnew) constructor.\n - `kpi_options` (`list[obj]`): Set the `kpi_options` field on the resulting object. When `null`, the `kpi_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualkpi_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualsort_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + field_wells=null, + kpi_options=null, + sort_configuration=null + ):: std.prune(a={ + field_wells: field_wells, + kpi_options: kpi_options, + sort_configuration: sort_configuration, + }), + sort_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `trend_group_sort` (`list[obj]`): Set the `trend_group_sort` field on the resulting object. When `null`, the `trend_group_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_group_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + trend_group_sort=null + ):: std.prune(a={ + trend_group_sort: trend_group_sort, + }), + trend_group_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.new` constructs a new object with attributes and blocks configured for the `trend_group_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `trend_group_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + conditional_formatting:: { + conditional_formatting_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `primary_value` (`list[obj]`): Set the `primary_value` field on the resulting object. When `null`, the `primary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingprimary_valuenew) constructor.\n - `progress_bar` (`list[obj]`): Set the `progress_bar` field on the resulting object. When `null`, the `progress_bar` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingprogress_barnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting_options` sub block.\n', args=[]), + new( + primary_value=null, + progress_bar=null + ):: std.prune(a={ + primary_value: primary_value, + progress_bar: progress_bar, + }), + primary_value:: { + icon:: { + custom_condition:: { + display_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `display_configuration` sub block.\n', args=[]), + new( + icon_display_option=null + ):: std.prune(a={ + icon_display_option: icon_display_option, + }), + }, + icon_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object.\n - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_options` sub block.\n', args=[]), + new( + icon=null, + unicode_icon=null + ):: std.prune(a={ + icon: icon, + unicode_icon: unicode_icon, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueicondisplay_configurationnew) constructor.\n - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_condition` sub block.\n', args=[]), + new( + expression, + color=null, + display_configuration=null, + icon_options=null + ):: std.prune(a={ + color: color, + display_configuration: display_configuration, + expression: expression, + icon_options: icon_options, + }), + }, + icon_set:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_set` sub block.\n', args=[]), + new( + expression, + icon_set_type=null + ):: std.prune(a={ + expression: expression, + icon_set_type: icon_set_type, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new` constructs a new object with attributes and blocks configured for the `icon`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuecustom_conditionnew) constructor.\n - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueicon_setnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `icon` sub block.\n', args=[]), + new( + custom_condition=null, + icon_set=null + ):: std.prune(a={ + custom_condition: custom_condition, + icon_set: icon_set, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.new` constructs a new object with attributes and blocks configured for the `primary_value`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsiconnew) constructor.\n - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_value` sub block.\n', args=[]), + new( + icon=null, + text_color=null + ):: std.prune(a={ + icon: icon, + text_color: text_color, + }), + text_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new` constructs a new object with attributes and blocks configured for the `text_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuegradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuesolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + }, + progress_bar:: { + foreground_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.new` constructs a new object with attributes and blocks configured for the `foreground_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_bargradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `foreground_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.new` constructs a new object with attributes and blocks configured for the `progress_bar`\nTerraform sub block.\n\n\n\n**Args**:\n - `foreground_color` (`list[obj]`): Set the `foreground_color` field on the resulting object. When `null`, the `foreground_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsforeground_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `progress_bar` sub block.\n', args=[]), + new( + foreground_color=null + ):: std.prune(a={ + foreground_color: foreground_color, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting`\nTerraform sub block.\n\n\n\n**Args**:\n - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formatting_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting` sub block.\n', args=[]), + new( + conditional_formatting_options=null + ):: std.prune(a={ + conditional_formatting_options: conditional_formatting_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.new` constructs a new object with attributes and blocks configured for the `kpi_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `kpi_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + conditional_formatting=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + conditional_formatting: conditional_formatting, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualskpi_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualskpi_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + line_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + contribution_analysis_defaults:: { + contributor_dimensions:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `contributor_dimensions` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults`\nTerraform sub block.\n\n\n\n**Args**:\n - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object.\n - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcontributor_dimensionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `contribution_analysis_defaults` sub block.\n', args=[]), + new( + measure_field_id, + contributor_dimensions=null + ):: std.prune(a={ + contributor_dimensions: contributor_dimensions, + measure_field_id: measure_field_id, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + default_series_settings:: { + line_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object.\n - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object.\n - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object.\n - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `line_style_settings` sub block.\n', args=[]), + new( + line_interpolation=null, + line_style=null, + line_visibility=null, + line_width=null + ):: std.prune(a={ + line_interpolation: line_interpolation, + line_style: line_style, + line_visibility: line_visibility, + line_width: line_width, + }), + }, + marker_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object.\n - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object.\n - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object.\n - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `marker_style_settings` sub block.\n', args=[]), + new( + marker_color=null, + marker_shape=null, + marker_size=null, + marker_visibility=null + ):: std.prune(a={ + marker_color: marker_color, + marker_shape: marker_shape, + marker_size: marker_size, + marker_visibility: marker_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.new` constructs a new object with attributes and blocks configured for the `default_series_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object.\n - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationline_style_settingsnew) constructor.\n - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmarker_style_settingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_series_settings` sub block.\n', args=[]), + new( + axis_binding=null, + line_style_settings=null, + marker_style_settings=null + ):: std.prune(a={ + axis_binding: axis_binding, + line_style_settings: line_style_settings, + marker_style_settings: marker_style_settings, + }), + }, + field_wells:: { + line_chart_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + colors:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `line_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellscolorsnew) constructor.\n - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `line_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + colors=null, + small_multiples=null, + values=null + ):: std.prune(a={ + category: category, + colors: colors, + small_multiples: small_multiples, + values: values, + }), + small_multiples:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_chart_aggregated_field_wells` (`list[obj]`): Set the `line_chart_aggregated_field_wells` field on the resulting object. When `null`, the `line_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationline_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + line_chart_aggregated_field_wells=null + ):: std.prune(a={ + line_chart_aggregated_field_wells: line_chart_aggregated_field_wells, + }), + }, + forecast_configurations:: { + forecast_properties:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties.new` constructs a new object with attributes and blocks configured for the `forecast_properties`\nTerraform sub block.\n\n\n\n**Args**:\n - `lower_boundary` (`number`): Set the `lower_boundary` field on the resulting object. When `null`, the `lower_boundary` field will be omitted from the resulting object.\n - `periods_backward` (`number`): Set the `periods_backward` field on the resulting object. When `null`, the `periods_backward` field will be omitted from the resulting object.\n - `periods_forward` (`number`): Set the `periods_forward` field on the resulting object. When `null`, the `periods_forward` field will be omitted from the resulting object.\n - `prediction_interval` (`number`): Set the `prediction_interval` field on the resulting object. When `null`, the `prediction_interval` field will be omitted from the resulting object.\n - `seasonality` (`number`): Set the `seasonality` field on the resulting object. When `null`, the `seasonality` field will be omitted from the resulting object.\n - `upper_boundary` (`number`): Set the `upper_boundary` field on the resulting object. When `null`, the `upper_boundary` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `forecast_properties` sub block.\n', args=[]), + new( + lower_boundary=null, + periods_backward=null, + periods_forward=null, + prediction_interval=null, + seasonality=null, + upper_boundary=null + ):: std.prune(a={ + lower_boundary: lower_boundary, + periods_backward: periods_backward, + periods_forward: periods_forward, + prediction_interval: prediction_interval, + seasonality: seasonality, + upper_boundary: upper_boundary, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.new` constructs a new object with attributes and blocks configured for the `forecast_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `forecast_properties` (`list[obj]`): Set the `forecast_properties` field on the resulting object. When `null`, the `forecast_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_propertiesnew) constructor.\n - `scenario` (`list[obj]`): Set the `scenario` field on the resulting object. When `null`, the `scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationscenarionew) constructor.\n\n**Returns**:\n - An attribute object that represents the `forecast_configurations` sub block.\n', args=[]), + new( + forecast_properties=null, + scenario=null + ):: std.prune(a={ + forecast_properties: forecast_properties, + scenario: scenario, + }), + scenario:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.new` constructs a new object with attributes and blocks configured for the `scenario`\nTerraform sub block.\n\n\n\n**Args**:\n - `what_if_point_scenario` (`list[obj]`): Set the `what_if_point_scenario` field on the resulting object. When `null`, the `what_if_point_scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationswhat_if_point_scenarionew) constructor.\n - `what_if_range_scenario` (`list[obj]`): Set the `what_if_range_scenario` field on the resulting object. When `null`, the `what_if_range_scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationswhat_if_range_scenarionew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scenario` sub block.\n', args=[]), + new( + what_if_point_scenario=null, + what_if_range_scenario=null + ):: std.prune(a={ + what_if_point_scenario: what_if_point_scenario, + what_if_range_scenario: what_if_range_scenario, + }), + what_if_point_scenario:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario.new` constructs a new object with attributes and blocks configured for the `what_if_point_scenario`\nTerraform sub block.\n\n\n\n**Args**:\n - `date` (`string`): Set the `date` field on the resulting object.\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `what_if_point_scenario` sub block.\n', args=[]), + new( + date, + value + ):: std.prune(a={ + date: date, + value: value, + }), + }, + what_if_range_scenario:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario.new` constructs a new object with attributes and blocks configured for the `what_if_range_scenario`\nTerraform sub block.\n\n\n\n**Args**:\n - `end_date` (`string`): Set the `end_date` field on the resulting object.\n - `start_date` (`string`): Set the `start_date` field on the resulting object.\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `what_if_range_scenario` sub block.\n', args=[]), + new( + end_date, + start_date, + value + ):: std.prune(a={ + end_date: end_date, + start_date: start_date, + value: value, + }), + }, + }, + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object.\n - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcontribution_analysis_defaultsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdata_labelsnew) constructor.\n - `default_series_settings` (`list[obj]`): Set the `default_series_settings` field on the resulting object. When `null`, the `default_series_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdefault_series_settingsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualfield_wellsnew) constructor.\n - `forecast_configurations` (`list[obj]`): Set the `forecast_configurations` field on the resulting object. When `null`, the `forecast_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualforecast_configurationsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsline_chart_visuallegendnew) constructor.\n - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualprimary_y_axis_display_optionsnew) constructor.\n - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualprimary_y_axis_label_optionsnew) constructor.\n - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualreference_linesnew) constructor.\n - `secondary_y_axis_display_options` (`list[obj]`): Set the `secondary_y_axis_display_options` field on the resulting object. When `null`, the `secondary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsecondary_y_axis_display_optionsnew) constructor.\n - `secondary_y_axis_label_options` (`list[obj]`): Set the `secondary_y_axis_label_options` field on the resulting object. When `null`, the `secondary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsecondary_y_axis_label_optionsnew) constructor.\n - `series` (`list[obj]`): Set the `series` field on the resulting object. When `null`, the `series` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualseriesnew) constructor.\n - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsmall_multiples_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualvisual_palettenew) constructor.\n - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualx_axis_display_optionsnew) constructor.\n - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualx_axis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + contribution_analysis_defaults=null, + data_labels=null, + default_series_settings=null, + field_wells=null, + forecast_configurations=null, + legend=null, + primary_y_axis_display_options=null, + primary_y_axis_label_options=null, + reference_lines=null, + secondary_y_axis_display_options=null, + secondary_y_axis_label_options=null, + series=null, + small_multiples_options=null, + sort_configuration=null, + tooltip=null, + type=null, + visual_palette=null, + x_axis_display_options=null, + x_axis_label_options=null + ):: std.prune(a={ + contribution_analysis_defaults: contribution_analysis_defaults, + data_labels: data_labels, + default_series_settings: default_series_settings, + field_wells: field_wells, + forecast_configurations: forecast_configurations, + legend: legend, + primary_y_axis_display_options: primary_y_axis_display_options, + primary_y_axis_label_options: primary_y_axis_label_options, + reference_lines: reference_lines, + secondary_y_axis_display_options: secondary_y_axis_display_options, + secondary_y_axis_label_options: secondary_y_axis_label_options, + series: series, + small_multiples_options: small_multiples_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + type: type, + visual_palette: visual_palette, + x_axis_display_options: x_axis_display_options, + x_axis_label_options: x_axis_label_options, + }), + primary_y_axis_display_options:: { + axis_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.new` constructs a new object with attributes and blocks configured for the `axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + missing_data_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration.new` constructs a new object with attributes and blocks configured for the `missing_data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `treatment_option` (`string`): Set the `treatment_option` field on the resulting object. When `null`, the `treatment_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `missing_data_configuration` sub block.\n', args=[]), + new( + treatment_option=null + ):: std.prune(a={ + treatment_option: treatment_option, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_options` (`list[obj]`): Set the `axis_options` field on the resulting object. When `null`, the `axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_optionsnew) constructor.\n - `missing_data_configuration` (`list[obj]`): Set the `missing_data_configuration` field on the resulting object. When `null`, the `missing_data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmissing_data_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_options=null, + missing_data_configuration=null + ):: std.prune(a={ + axis_options: axis_options, + missing_data_configuration: missing_data_configuration, + }), + }, + primary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + reference_lines:: { + data_configuration:: { + dynamic_configuration:: { + calculation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `calculation` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + measure_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `measure_aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor.\n - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `dynamic_configuration` sub block.\n', args=[]), + new( + calculation=null, + column=null, + measure_aggregation_function=null + ):: std.prune(a={ + calculation: calculation, + column: column, + measure_aggregation_function: measure_aggregation_function, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object.\n - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor.\n - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_configuration` sub block.\n', args=[]), + new( + axis_binding=null, + dynamic_configuration=null, + static_configuration=null + ):: std.prune(a={ + axis_binding: axis_binding, + dynamic_configuration: dynamic_configuration, + static_configuration: static_configuration, + }), + static_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `static_configuration` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + label_configuration:: { + custom_label_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_label_configuration` sub block.\n', args=[]), + new( + custom_label + ):: std.prune(a={ + custom_label: custom_label, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object.\n - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object.\n - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesfont_configurationnew) constructor.\n - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_configuration` sub block.\n', args=[]), + new( + custom_label_configuration=null, + font_color=null, + font_configuration=null, + horizontal_position=null, + value_label_configuration=null, + vertical_position=null + ):: std.prune(a={ + custom_label_configuration: custom_label_configuration, + font_color: font_color, + font_configuration: font_configuration, + horizontal_position: horizontal_position, + value_label_configuration: value_label_configuration, + vertical_position: vertical_position, + }), + value_label_configuration:: { + format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_configuration` sub block.\n', args=[]), + new( + format_configuration=null, + relative_position=null + ):: std.prune(a={ + format_configuration: format_configuration, + relative_position: relative_position, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines`\nTerraform sub block.\n\n\n\n**Args**:\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_configurationnew) constructor.\n - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlabel_configurationnew) constructor.\n - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationstyle_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `reference_lines` sub block.\n', args=[]), + new( + data_configuration=null, + label_configuration=null, + status=null, + style_configuration=null + ):: std.prune(a={ + data_configuration: data_configuration, + label_configuration: label_configuration, + status: status, + style_configuration: style_configuration, + }), + style_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `style_configuration` sub block.\n', args=[]), + new( + color=null, + pattern=null + ):: std.prune(a={ + color: color, + pattern: pattern, + }), + }, + }, + secondary_y_axis_display_options:: { + axis_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.new` constructs a new object with attributes and blocks configured for the `axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + missing_data_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration.new` constructs a new object with attributes and blocks configured for the `missing_data_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `treatment_option` (`string`): Set the `treatment_option` field on the resulting object. When `null`, the `treatment_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `missing_data_configuration` sub block.\n', args=[]), + new( + treatment_option=null + ):: std.prune(a={ + treatment_option: treatment_option, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_options` (`list[obj]`): Set the `axis_options` field on the resulting object. When `null`, the `axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_optionsnew) constructor.\n - `missing_data_configuration` (`list[obj]`): Set the `missing_data_configuration` field on the resulting object. When `null`, the `missing_data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmissing_data_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `secondary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_options=null, + missing_data_configuration=null + ):: std.prune(a={ + axis_options: axis_options, + missing_data_configuration: missing_data_configuration, + }), + }, + secondary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `secondary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + series:: { + data_field_series_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.new` constructs a new object with attributes and blocks configured for the `data_field_series_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `settings` (`list[obj]`): Set the `settings` field on the resulting object. When `null`, the `settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriessettingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_field_series_item` sub block.\n', args=[]), + new( + axis_binding, + field_id, + field_value=null, + settings=null + ):: std.prune(a={ + axis_binding: axis_binding, + field_id: field_id, + field_value: field_value, + settings: settings, + }), + settings:: { + line_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object.\n - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object.\n - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object.\n - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `line_style_settings` sub block.\n', args=[]), + new( + line_interpolation=null, + line_style=null, + line_visibility=null, + line_width=null + ):: std.prune(a={ + line_interpolation: line_interpolation, + line_style: line_style, + line_visibility: line_visibility, + line_width: line_width, + }), + }, + marker_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object.\n - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object.\n - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object.\n - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `marker_style_settings` sub block.\n', args=[]), + new( + marker_color=null, + marker_shape=null, + marker_size=null, + marker_visibility=null + ):: std.prune(a={ + marker_color: marker_color, + marker_shape: marker_shape, + marker_size: marker_size, + marker_visibility: marker_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.new` constructs a new object with attributes and blocks configured for the `settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemline_style_settingsnew) constructor.\n - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemmarker_style_settingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `settings` sub block.\n', args=[]), + new( + line_style_settings=null, + marker_style_settings=null + ):: std.prune(a={ + line_style_settings: line_style_settings, + marker_style_settings: marker_style_settings, + }), + }, + }, + field_series_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.new` constructs a new object with attributes and blocks configured for the `field_series_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `settings` (`list[obj]`): Set the `settings` field on the resulting object. When `null`, the `settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriessettingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_series_item` sub block.\n', args=[]), + new( + axis_binding, + field_id, + settings=null + ):: std.prune(a={ + axis_binding: axis_binding, + field_id: field_id, + settings: settings, + }), + settings:: { + line_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object.\n - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object.\n - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object.\n - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `line_style_settings` sub block.\n', args=[]), + new( + line_interpolation=null, + line_style=null, + line_visibility=null, + line_width=null + ):: std.prune(a={ + line_interpolation: line_interpolation, + line_style: line_style, + line_visibility: line_visibility, + line_width: line_width, + }), + }, + marker_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object.\n - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object.\n - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object.\n - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `marker_style_settings` sub block.\n', args=[]), + new( + marker_color=null, + marker_shape=null, + marker_size=null, + marker_visibility=null + ):: std.prune(a={ + marker_color: marker_color, + marker_shape: marker_shape, + marker_size: marker_size, + marker_visibility: marker_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.new` constructs a new object with attributes and blocks configured for the `settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemline_style_settingsnew) constructor.\n - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemmarker_style_settingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `settings` sub block.\n', args=[]), + new( + line_style_settings=null, + marker_style_settings=null + ):: std.prune(a={ + line_style_settings: line_style_settings, + marker_style_settings: marker_style_settings, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.new` constructs a new object with attributes and blocks configured for the `series`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_field_series_item` (`list[obj]`): Set the `data_field_series_item` field on the resulting object. When `null`, the `data_field_series_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_field_series_itemnew) constructor.\n - `field_series_item` (`list[obj]`): Set the `field_series_item` field on the resulting object. When `null`, the `field_series_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_series_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `series` sub block.\n', args=[]), + new( + data_field_series_item=null, + field_series_item=null + ):: std.prune(a={ + data_field_series_item: data_field_series_item, + field_series_item: field_series_item, + }), + }, + small_multiples_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object.\n - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object.\n - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationpanel_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_options` sub block.\n', args=[]), + new( + max_visible_columns=null, + max_visible_rows=null, + panel_configuration=null + ):: std.prune(a={ + max_visible_columns: max_visible_columns, + max_visible_rows: max_visible_rows, + panel_configuration: panel_configuration, + }), + panel_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object.\n - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object.\n - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object.\n - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object.\n - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object.\n - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object.\n - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `panel_configuration` sub block.\n', args=[]), + new( + background_color=null, + background_visibility=null, + border_color=null, + border_style=null, + border_thickness=null, + border_visibility=null, + gutter_spacing=null, + gutter_visibility=null, + title=null + ):: std.prune(a={ + background_color: background_color, + background_visibility: background_visibility, + border_color: border_color, + border_style: border_style, + border_thickness: border_thickness, + border_visibility: border_visibility, + gutter_spacing: gutter_spacing, + gutter_visibility: gutter_visibility, + title: title, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + font_configuration=null, + horizontal_text_alignment=null, + visibility=null + ):: std.prune(a={ + font_configuration: font_configuration, + horizontal_text_alignment: horizontal_text_alignment, + visibility: visibility, + }), + }, + }, + }, + sort_configuration:: { + category_items_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `category_items_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + color_items_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `color_items_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `color_items_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit_configuration` (`list[obj]`): Set the `category_items_limit_configuration` field on the resulting object. When `null`, the `category_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcategory_items_limit_configurationnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcategory_sortnew) constructor.\n - `color_items_limit_configuration` (`list[obj]`): Set the `color_items_limit_configuration` field on the resulting object. When `null`, the `color_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcolor_items_limit_configurationnew) constructor.\n - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor.\n - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit_configuration=null, + category_sort=null, + color_items_limit_configuration=null, + small_multiples_limit_configuration=null, + small_multiples_sort=null + ):: std.prune(a={ + category_items_limit_configuration: category_items_limit_configuration, + category_sort: category_sort, + color_items_limit_configuration: color_items_limit_configuration, + small_multiples_limit_configuration: small_multiples_limit_configuration, + small_multiples_sort: small_multiples_sort, + }), + small_multiples_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + small_multiples_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + x_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + x_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.new` constructs a new object with attributes and blocks configured for the `line_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `line_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.new` constructs a new object with attributes and blocks configured for the `visuals`\nTerraform sub block.\n\n\n\n**Args**:\n - `bar_chart_visual` (`list[obj]`): Set the `bar_chart_visual` field on the resulting object. When `null`, the `bar_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.new](#fn-definitiondefinitionsheetsbar_chart_visualnew) constructor.\n - `box_plot_visual` (`list[obj]`): Set the `box_plot_visual` field on the resulting object. When `null`, the `box_plot_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.new](#fn-definitiondefinitionsheetsbox_plot_visualnew) constructor.\n - `combo_chart_visual` (`list[obj]`): Set the `combo_chart_visual` field on the resulting object. When `null`, the `combo_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.new](#fn-definitiondefinitionsheetscombo_chart_visualnew) constructor.\n - `custom_content_visual` (`list[obj]`): Set the `custom_content_visual` field on the resulting object. When `null`, the `custom_content_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.new](#fn-definitiondefinitionsheetscustom_content_visualnew) constructor.\n - `empty_visual` (`list[obj]`): Set the `empty_visual` field on the resulting object. When `null`, the `empty_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.new](#fn-definitiondefinitionsheetsempty_visualnew) constructor.\n - `filled_map_visual` (`list[obj]`): Set the `filled_map_visual` field on the resulting object. When `null`, the `filled_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.new](#fn-definitiondefinitionsheetsfilled_map_visualnew) constructor.\n - `funnel_chart_visual` (`list[obj]`): Set the `funnel_chart_visual` field on the resulting object. When `null`, the `funnel_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.new](#fn-definitiondefinitionsheetsfunnel_chart_visualnew) constructor.\n - `gauge_chart_visual` (`list[obj]`): Set the `gauge_chart_visual` field on the resulting object. When `null`, the `gauge_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.new](#fn-definitiondefinitionsheetsgauge_chart_visualnew) constructor.\n - `geospatial_map_visual` (`list[obj]`): Set the `geospatial_map_visual` field on the resulting object. When `null`, the `geospatial_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.new](#fn-definitiondefinitionsheetsgeospatial_map_visualnew) constructor.\n - `heat_map_visual` (`list[obj]`): Set the `heat_map_visual` field on the resulting object. When `null`, the `heat_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.new](#fn-definitiondefinitionsheetsheat_map_visualnew) constructor.\n - `histogram_visual` (`list[obj]`): Set the `histogram_visual` field on the resulting object. When `null`, the `histogram_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.new](#fn-definitiondefinitionsheetshistogram_visualnew) constructor.\n - `insight_visual` (`list[obj]`): Set the `insight_visual` field on the resulting object. When `null`, the `insight_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.new](#fn-definitiondefinitionsheetsinsight_visualnew) constructor.\n - `kpi_visual` (`list[obj]`): Set the `kpi_visual` field on the resulting object. When `null`, the `kpi_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.new](#fn-definitiondefinitionsheetskpi_visualnew) constructor.\n - `line_chart_visual` (`list[obj]`): Set the `line_chart_visual` field on the resulting object. When `null`, the `line_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.new](#fn-definitiondefinitionsheetsline_chart_visualnew) constructor.\n - `pie_chart_visual` (`list[obj]`): Set the `pie_chart_visual` field on the resulting object. When `null`, the `pie_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.new](#fn-definitiondefinitionsheetspie_chart_visualnew) constructor.\n - `pivot_table_visual` (`list[obj]`): Set the `pivot_table_visual` field on the resulting object. When `null`, the `pivot_table_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.new](#fn-definitiondefinitionsheetspivot_table_visualnew) constructor.\n - `radar_chart_visual` (`list[obj]`): Set the `radar_chart_visual` field on the resulting object. When `null`, the `radar_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.new](#fn-definitiondefinitionsheetsradar_chart_visualnew) constructor.\n - `sankey_diagram_visual` (`list[obj]`): Set the `sankey_diagram_visual` field on the resulting object. When `null`, the `sankey_diagram_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.new](#fn-definitiondefinitionsheetssankey_diagram_visualnew) constructor.\n - `scatter_plot_visual` (`list[obj]`): Set the `scatter_plot_visual` field on the resulting object. When `null`, the `scatter_plot_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.new](#fn-definitiondefinitionsheetsscatter_plot_visualnew) constructor.\n - `table_visual` (`list[obj]`): Set the `table_visual` field on the resulting object. When `null`, the `table_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.new](#fn-definitiondefinitionsheetstable_visualnew) constructor.\n - `tree_map_visual` (`list[obj]`): Set the `tree_map_visual` field on the resulting object. When `null`, the `tree_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.new](#fn-definitiondefinitionsheetstree_map_visualnew) constructor.\n - `waterfall_visual` (`list[obj]`): Set the `waterfall_visual` field on the resulting object. When `null`, the `waterfall_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.new](#fn-definitiondefinitionsheetswaterfall_visualnew) constructor.\n - `word_cloud_visual` (`list[obj]`): Set the `word_cloud_visual` field on the resulting object. When `null`, the `word_cloud_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.new](#fn-definitiondefinitionsheetsword_cloud_visualnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visuals` sub block.\n', args=[]), + new( + bar_chart_visual=null, + box_plot_visual=null, + combo_chart_visual=null, + custom_content_visual=null, + empty_visual=null, + filled_map_visual=null, + funnel_chart_visual=null, + gauge_chart_visual=null, + geospatial_map_visual=null, + heat_map_visual=null, + histogram_visual=null, + insight_visual=null, + kpi_visual=null, + line_chart_visual=null, + pie_chart_visual=null, + pivot_table_visual=null, + radar_chart_visual=null, + sankey_diagram_visual=null, + scatter_plot_visual=null, + table_visual=null, + tree_map_visual=null, + waterfall_visual=null, + word_cloud_visual=null + ):: std.prune(a={ + bar_chart_visual: bar_chart_visual, + box_plot_visual: box_plot_visual, + combo_chart_visual: combo_chart_visual, + custom_content_visual: custom_content_visual, + empty_visual: empty_visual, + filled_map_visual: filled_map_visual, + funnel_chart_visual: funnel_chart_visual, + gauge_chart_visual: gauge_chart_visual, + geospatial_map_visual: geospatial_map_visual, + heat_map_visual: heat_map_visual, + histogram_visual: histogram_visual, + insight_visual: insight_visual, + kpi_visual: kpi_visual, + line_chart_visual: line_chart_visual, + pie_chart_visual: pie_chart_visual, + pivot_table_visual: pivot_table_visual, + radar_chart_visual: radar_chart_visual, + sankey_diagram_visual: sankey_diagram_visual, + scatter_plot_visual: scatter_plot_visual, + table_visual: table_visual, + tree_map_visual: tree_map_visual, + waterfall_visual: waterfall_visual, + word_cloud_visual: word_cloud_visual, + }), + pie_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + contribution_analysis_defaults:: { + contributor_dimensions:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `contributor_dimensions` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults`\nTerraform sub block.\n\n\n\n**Args**:\n - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object.\n - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcontributor_dimensionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `contribution_analysis_defaults` sub block.\n', args=[]), + new( + measure_field_id, + contributor_dimensions=null + ):: std.prune(a={ + contributor_dimensions: contributor_dimensions, + measure_field_id: measure_field_id, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + donut_options:: { + arc_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options.new` constructs a new object with attributes and blocks configured for the `arc_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `arc_thickness` (`string`): Set the `arc_thickness` field on the resulting object. When `null`, the `arc_thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `arc_options` sub block.\n', args=[]), + new( + arc_thickness=null + ):: std.prune(a={ + arc_thickness: arc_thickness, + }), + }, + donut_center_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options.new` constructs a new object with attributes and blocks configured for the `donut_center_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `label_visibility` (`string`): Set the `label_visibility` field on the resulting object. When `null`, the `label_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `donut_center_options` sub block.\n', args=[]), + new( + label_visibility=null + ):: std.prune(a={ + label_visibility: label_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.new` constructs a new object with attributes and blocks configured for the `donut_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `arc_options` (`list[obj]`): Set the `arc_options` field on the resulting object. When `null`, the `arc_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationarc_optionsnew) constructor.\n - `donut_center_options` (`list[obj]`): Set the `donut_center_options` field on the resulting object. When `null`, the `donut_center_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdonut_center_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `donut_options` sub block.\n', args=[]), + new( + arc_options=null, + donut_center_options=null + ):: std.prune(a={ + arc_options: arc_options, + donut_center_options: donut_center_options, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `pie_chart_aggregated_field_wells` (`list[obj]`): Set the `pie_chart_aggregated_field_wells` field on the resulting object. When `null`, the `pie_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationpie_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + pie_chart_aggregated_field_wells=null + ):: std.prune(a={ + pie_chart_aggregated_field_wells: pie_chart_aggregated_field_wells, + }), + pie_chart_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `pie_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `pie_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + small_multiples=null, + values=null + ):: std.prune(a={ + category: category, + small_multiples: small_multiples, + values: values, + }), + small_multiples:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcategory_label_optionsnew) constructor.\n - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcontribution_analysis_defaultsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdata_labelsnew) constructor.\n - `donut_options` (`list[obj]`): Set the `donut_options` field on the resulting object. When `null`, the `donut_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdonut_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualspie_chart_visuallegendnew) constructor.\n - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualsmall_multiples_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualtooltipnew) constructor.\n - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualvalue_label_optionsnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + category_label_options=null, + contribution_analysis_defaults=null, + data_labels=null, + donut_options=null, + field_wells=null, + legend=null, + small_multiples_options=null, + sort_configuration=null, + tooltip=null, + value_label_options=null, + visual_palette=null + ):: std.prune(a={ + category_label_options: category_label_options, + contribution_analysis_defaults: contribution_analysis_defaults, + data_labels: data_labels, + donut_options: donut_options, + field_wells: field_wells, + legend: legend, + small_multiples_options: small_multiples_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + value_label_options: value_label_options, + visual_palette: visual_palette, + }), + small_multiples_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object.\n - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object.\n - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationpanel_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_options` sub block.\n', args=[]), + new( + max_visible_columns=null, + max_visible_rows=null, + panel_configuration=null + ):: std.prune(a={ + max_visible_columns: max_visible_columns, + max_visible_rows: max_visible_rows, + panel_configuration: panel_configuration, + }), + panel_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object.\n - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object.\n - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object.\n - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object.\n - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object.\n - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object.\n - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `panel_configuration` sub block.\n', args=[]), + new( + background_color=null, + background_visibility=null, + border_color=null, + border_style=null, + border_thickness=null, + border_visibility=null, + gutter_spacing=null, + gutter_visibility=null, + title=null + ):: std.prune(a={ + background_color: background_color, + background_visibility: background_visibility, + border_color: border_color, + border_style: border_style, + border_thickness: border_thickness, + border_visibility: border_visibility, + gutter_spacing: gutter_spacing, + gutter_visibility: gutter_visibility, + title: title, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + font_configuration=null, + horizontal_text_alignment=null, + visibility=null + ):: std.prune(a={ + font_configuration: font_configuration, + horizontal_text_alignment: horizontal_text_alignment, + visibility: visibility, + }), + }, + }, + }, + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_sortnew) constructor.\n - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor.\n - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null, + small_multiples_limit_configuration=null, + small_multiples_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + small_multiples_limit_configuration: small_multiples_limit_configuration, + small_multiples_sort: small_multiples_sort, + }), + small_multiples_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + small_multiples_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `small_multiples_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + value_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.new` constructs a new object with attributes and blocks configured for the `pie_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `pie_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + pivot_table_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + field_options:: { + data_path_options:: { + data_path_list:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list.new` constructs a new object with attributes and blocks configured for the `data_path_list`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_list` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.new` constructs a new object with attributes and blocks configured for the `data_path_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `data_path_list` (`list[obj]`): Set the `data_path_list` field on the resulting object. When `null`, the `data_path_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_listnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_path_options` sub block.\n', args=[]), + new( + data_path_list=null, + width=null + ):: std.prune(a={ + data_path_list: data_path_list, + width: width, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.new` constructs a new object with attributes and blocks configured for the `field_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_options` (`list[obj]`): Set the `data_path_options` field on the resulting object. When `null`, the `data_path_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationdata_path_optionsnew) constructor.\n - `selected_field_options` (`list[obj]`): Set the `selected_field_options` field on the resulting object. When `null`, the `selected_field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationselected_field_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_options` sub block.\n', args=[]), + new( + data_path_options=null, + selected_field_options=null + ):: std.prune(a={ + data_path_options: data_path_options, + selected_field_options: selected_field_options, + }), + selected_field_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.new` constructs a new object with attributes and blocks configured for the `selected_field_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_field_options` sub block.\n', args=[]), + new( + field_id, + custom_label=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + field_id: field_id, + visibility: visibility, + }), + }, + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `pivot_table_aggregated_field_wells` (`list[obj]`): Set the `pivot_table_aggregated_field_wells` field on the resulting object. When `null`, the `pivot_table_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationpivot_table_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + pivot_table_aggregated_field_wells=null + ):: std.prune(a={ + pivot_table_aggregated_field_wells: pivot_table_aggregated_field_wells, + }), + pivot_table_aggregated_field_wells:: { + columns:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `pivot_table_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellscolumnsnew) constructor.\n - `rows` (`list[obj]`): Set the `rows` field on the resulting object. When `null`, the `rows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellsrowsnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `pivot_table_aggregated_field_wells` sub block.\n', args=[]), + new( + columns=null, + rows=null, + values=null + ):: std.prune(a={ + columns: columns, + rows: rows, + values: values, + }), + rows:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.new` constructs a new object with attributes and blocks configured for the `rows`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rows` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_options` (`list[obj]`): Set the `field_options` field on the resulting object. When `null`, the `field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualfield_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualfield_wellsnew) constructor.\n - `paginated_report_options` (`list[obj]`): Set the `paginated_report_options` field on the resulting object. When `null`, the `paginated_report_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualpaginated_report_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualsort_configurationnew) constructor.\n - `table_options` (`list[obj]`): Set the `table_options` field on the resulting object. When `null`, the `table_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualtable_optionsnew) constructor.\n - `total_options` (`list[obj]`): Set the `total_options` field on the resulting object. When `null`, the `total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualtotal_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + field_options=null, + field_wells=null, + paginated_report_options=null, + sort_configuration=null, + table_options=null, + total_options=null + ):: std.prune(a={ + field_options: field_options, + field_wells: field_wells, + paginated_report_options: paginated_report_options, + sort_configuration: sort_configuration, + table_options: table_options, + total_options: total_options, + }), + paginated_report_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options.new` constructs a new object with attributes and blocks configured for the `paginated_report_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `overflow_column_header_visibility` (`string`): Set the `overflow_column_header_visibility` field on the resulting object. When `null`, the `overflow_column_header_visibility` field will be omitted from the resulting object.\n - `vertical_overflow_visibility` (`string`): Set the `vertical_overflow_visibility` field on the resulting object. When `null`, the `vertical_overflow_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `paginated_report_options` sub block.\n', args=[]), + new( + overflow_column_header_visibility=null, + vertical_overflow_visibility=null + ):: std.prune(a={ + overflow_column_header_visibility: overflow_column_header_visibility, + vertical_overflow_visibility: vertical_overflow_visibility, + }), + }, + sort_configuration:: { + field_sort_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.new` constructs a new object with attributes and blocks configured for the `field_sort_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_sort_options` sub block.\n', args=[]), + new( + field_id, + sort_by=null + ):: std.prune(a={ + field_id: field_id, + sort_by: sort_by, + }), + sort_by:: { + column:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_byaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bysort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + data_path:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.new` constructs a new object with attributes and blocks configured for the `data_path`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `sort_paths` (`list[obj]`): Set the `sort_paths` field on the resulting object. When `null`, the `sort_paths` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bysort_pathsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_path` sub block.\n', args=[]), + new( + direction, + sort_paths=null + ):: std.prune(a={ + direction: direction, + sort_paths: sort_paths, + }), + sort_paths:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths.new` constructs a new object with attributes and blocks configured for the `sort_paths`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_paths` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + }, + field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field.new` constructs a new object with attributes and blocks configured for the `field`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionscolumnnew) constructor.\n - `data_path` (`list[obj]`): Set the `data_path` field on the resulting object. When `null`, the `data_path` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionsdata_pathnew) constructor.\n - `field` (`list[obj]`): Set the `field` field on the resulting object. When `null`, the `field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionsfieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column=null, + data_path=null, + field=null + ):: std.prune(a={ + column: column, + data_path: data_path, + field: field, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_sort_options` (`list[obj]`): Set the `field_sort_options` field on the resulting object. When `null`, the `field_sort_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_sort_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + field_sort_options=null + ):: std.prune(a={ + field_sort_options: field_sort_options, + }), + }, + table_options:: { + cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.new` constructs a new object with attributes and blocks configured for the `cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + column_header_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.new` constructs a new object with attributes and blocks configured for the `column_header_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_header_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.new` constructs a new object with attributes and blocks configured for the `table_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `collapsed_row_dimensions_visibility` (`string`): Set the `collapsed_row_dimensions_visibility` field on the resulting object. When `null`, the `collapsed_row_dimensions_visibility` field will be omitted from the resulting object.\n - `column_names_visibility` (`string`): Set the `column_names_visibility` field on the resulting object. When `null`, the `column_names_visibility` field will be omitted from the resulting object.\n - `metric_placement` (`string`): Set the `metric_placement` field on the resulting object. When `null`, the `metric_placement` field will be omitted from the resulting object.\n - `single_metric_visibility` (`string`): Set the `single_metric_visibility` field on the resulting object. When `null`, the `single_metric_visibility` field will be omitted from the resulting object.\n - `toggle_buttons_visibility` (`string`): Set the `toggle_buttons_visibility` field on the resulting object. When `null`, the `toggle_buttons_visibility` field will be omitted from the resulting object.\n - `cell_style` (`list[obj]`): Set the `cell_style` field on the resulting object. When `null`, the `cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcell_stylenew) constructor.\n - `column_header_style` (`list[obj]`): Set the `column_header_style` field on the resulting object. When `null`, the `column_header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_header_stylenew) constructor.\n - `row_alternate_color_options` (`list[obj]`): Set the `row_alternate_color_options` field on the resulting object. When `null`, the `row_alternate_color_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_alternate_color_optionsnew) constructor.\n - `row_field_names_style` (`list[obj]`): Set the `row_field_names_style` field on the resulting object. When `null`, the `row_field_names_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_field_names_stylenew) constructor.\n - `row_header_style` (`list[obj]`): Set the `row_header_style` field on the resulting object. When `null`, the `row_header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_header_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_options` sub block.\n', args=[]), + new( + cell_style=null, + collapsed_row_dimensions_visibility=null, + column_header_style=null, + column_names_visibility=null, + metric_placement=null, + row_alternate_color_options=null, + row_field_names_style=null, + row_header_style=null, + single_metric_visibility=null, + toggle_buttons_visibility=null + ):: std.prune(a={ + cell_style: cell_style, + collapsed_row_dimensions_visibility: collapsed_row_dimensions_visibility, + column_header_style: column_header_style, + column_names_visibility: column_names_visibility, + metric_placement: metric_placement, + row_alternate_color_options: row_alternate_color_options, + row_field_names_style: row_field_names_style, + row_header_style: row_header_style, + single_metric_visibility: single_metric_visibility, + toggle_buttons_visibility: toggle_buttons_visibility, + }), + row_alternate_color_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options.new` constructs a new object with attributes and blocks configured for the `row_alternate_color_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `row_alternate_colors` (`list`): Set the `row_alternate_colors` field on the resulting object. When `null`, the `row_alternate_colors` field will be omitted from the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `row_alternate_color_options` sub block.\n', args=[]), + new( + row_alternate_colors=null, + status=null + ):: std.prune(a={ + row_alternate_colors: row_alternate_colors, + status: status, + }), + }, + row_field_names_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.new` constructs a new object with attributes and blocks configured for the `row_field_names_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_field_names_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + row_header_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.new` constructs a new object with attributes and blocks configured for the `row_header_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_header_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + total_options:: { + column_subtotal_options:: { + field_level_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options.new` constructs a new object with attributes and blocks configured for the `field_level_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_level_options` sub block.\n', args=[]), + new( + field_id=null + ):: std.prune(a={ + field_id: field_id, + }), + }, + metric_header_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `metric_header_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.new` constructs a new object with attributes and blocks configured for the `column_subtotal_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `field_level` (`string`): Set the `field_level` field on the resulting object. When `null`, the `field_level` field will be omitted from the resulting object.\n - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object.\n - `field_level_options` (`list[obj]`): Set the `field_level_options` field on the resulting object. When `null`, the `field_level_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsfield_level_optionsnew) constructor.\n - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor.\n - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor.\n - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_subtotal_options` sub block.\n', args=[]), + new( + custom_label=null, + field_level=null, + field_level_options=null, + metric_header_cell_style=null, + total_cell_style=null, + totals_visibility=null, + value_cell_style=null + ):: std.prune(a={ + custom_label: custom_label, + field_level: field_level, + field_level_options: field_level_options, + metric_header_cell_style: metric_header_cell_style, + total_cell_style: total_cell_style, + totals_visibility: totals_visibility, + value_cell_style: value_cell_style, + }), + total_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + value_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + column_total_options:: { + metric_header_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `metric_header_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.new` constructs a new object with attributes and blocks configured for the `column_total_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object.\n - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object.\n - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object.\n - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor.\n - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor.\n - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_total_options` sub block.\n', args=[]), + new( + custom_label=null, + metric_header_cell_style=null, + placement=null, + scroll_status=null, + total_cell_style=null, + totals_visibility=null, + value_cell_style=null + ):: std.prune(a={ + custom_label: custom_label, + metric_header_cell_style: metric_header_cell_style, + placement: placement, + scroll_status: scroll_status, + total_cell_style: total_cell_style, + totals_visibility: totals_visibility, + value_cell_style: value_cell_style, + }), + total_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + value_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.new` constructs a new object with attributes and blocks configured for the `total_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_subtotal_options` (`list[obj]`): Set the `column_subtotal_options` field on the resulting object. When `null`, the `column_subtotal_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_subtotal_optionsnew) constructor.\n - `column_total_options` (`list[obj]`): Set the `column_total_options` field on the resulting object. When `null`, the `column_total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_total_optionsnew) constructor.\n - `row_subtotal_options` (`list[obj]`): Set the `row_subtotal_options` field on the resulting object. When `null`, the `row_subtotal_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_subtotal_optionsnew) constructor.\n - `row_total_options` (`list[obj]`): Set the `row_total_options` field on the resulting object. When `null`, the `row_total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_total_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_options` sub block.\n', args=[]), + new( + column_subtotal_options=null, + column_total_options=null, + row_subtotal_options=null, + row_total_options=null + ):: std.prune(a={ + column_subtotal_options: column_subtotal_options, + column_total_options: column_total_options, + row_subtotal_options: row_subtotal_options, + row_total_options: row_total_options, + }), + row_subtotal_options:: { + field_level_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options.new` constructs a new object with attributes and blocks configured for the `field_level_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_level_options` sub block.\n', args=[]), + new( + field_id=null + ):: std.prune(a={ + field_id: field_id, + }), + }, + metric_header_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `metric_header_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.new` constructs a new object with attributes and blocks configured for the `row_subtotal_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `field_level` (`string`): Set the `field_level` field on the resulting object. When `null`, the `field_level` field will be omitted from the resulting object.\n - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object.\n - `field_level_options` (`list[obj]`): Set the `field_level_options` field on the resulting object. When `null`, the `field_level_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsfield_level_optionsnew) constructor.\n - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor.\n - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor.\n - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_subtotal_options` sub block.\n', args=[]), + new( + custom_label=null, + field_level=null, + field_level_options=null, + metric_header_cell_style=null, + total_cell_style=null, + totals_visibility=null, + value_cell_style=null + ):: std.prune(a={ + custom_label: custom_label, + field_level: field_level, + field_level_options: field_level_options, + metric_header_cell_style: metric_header_cell_style, + total_cell_style: total_cell_style, + totals_visibility: totals_visibility, + value_cell_style: value_cell_style, + }), + total_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + value_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + row_total_options:: { + metric_header_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `metric_header_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.new` constructs a new object with attributes and blocks configured for the `row_total_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object.\n - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object.\n - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object.\n - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor.\n - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor.\n - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_total_options` sub block.\n', args=[]), + new( + custom_label=null, + metric_header_cell_style=null, + placement=null, + scroll_status=null, + total_cell_style=null, + totals_visibility=null, + value_cell_style=null + ):: std.prune(a={ + custom_label: custom_label, + metric_header_cell_style: metric_header_cell_style, + placement: placement, + scroll_status: scroll_status, + total_cell_style: total_cell_style, + totals_visibility: totals_visibility, + value_cell_style: value_cell_style, + }), + total_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + value_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + }, + }, + conditional_formatting:: { + conditional_formatting_options:: { + cell:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.new` constructs a new object with attributes and blocks configured for the `cell`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `scope` (`list[obj]`): Set the `scope` field on the resulting object. When `null`, the `scope` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionsscopenew) constructor.\n - `text_format` (`list[obj]`): Set the `text_format` field on the resulting object. When `null`, the `text_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionstext_formatnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cell` sub block.\n', args=[]), + new( + field_id, + scope=null, + text_format=null + ):: std.prune(a={ + field_id: field_id, + scope: scope, + text_format: text_format, + }), + scope:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope.new` constructs a new object with attributes and blocks configured for the `scope`\nTerraform sub block.\n\n\n\n**Args**:\n - `role` (`string`): Set the `role` field on the resulting object. When `null`, the `role` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `scope` sub block.\n', args=[]), + new( + role=null + ):: std.prune(a={ + role: role, + }), + }, + text_format:: { + background_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `background_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + icon:: { + custom_condition:: { + display_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `display_configuration` sub block.\n', args=[]), + new( + icon_display_option=null + ):: std.prune(a={ + icon_display_option: icon_display_option, + }), + }, + icon_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object.\n - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_options` sub block.\n', args=[]), + new( + icon=null, + unicode_icon=null + ):: std.prune(a={ + icon: icon, + unicode_icon: unicode_icon, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticondisplay_configurationnew) constructor.\n - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_condition` sub block.\n', args=[]), + new( + expression, + color=null, + display_configuration=null, + icon_options=null + ):: std.prune(a={ + color: color, + display_configuration: display_configuration, + expression: expression, + icon_options: icon_options, + }), + }, + icon_set:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_set` sub block.\n', args=[]), + new( + expression, + icon_set_type=null + ):: std.prune(a={ + expression: expression, + icon_set_type: icon_set_type, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new` constructs a new object with attributes and blocks configured for the `icon`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatcustom_conditionnew) constructor.\n - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticon_setnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `icon` sub block.\n', args=[]), + new( + custom_condition=null, + icon_set=null + ):: std.prune(a={ + custom_condition: custom_condition, + icon_set: icon_set, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new` constructs a new object with attributes and blocks configured for the `text_format`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscellbackground_colornew) constructor.\n - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelliconnew) constructor.\n - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_format` sub block.\n', args=[]), + new( + background_color=null, + icon=null, + text_color=null + ):: std.prune(a={ + background_color: background_color, + icon: icon, + text_color: text_color, + }), + text_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new` constructs a new object with attributes and blocks configured for the `text_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `cell` (`list[obj]`): Set the `cell` field on the resulting object. When `null`, the `cell` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingcellnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting_options` sub block.\n', args=[]), + new( + cell=null + ):: std.prune(a={ + cell: cell, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting`\nTerraform sub block.\n\n\n\n**Args**:\n - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formatting_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting` sub block.\n', args=[]), + new( + conditional_formatting_options=null + ):: std.prune(a={ + conditional_formatting_options: conditional_formatting_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.new` constructs a new object with attributes and blocks configured for the `pivot_table_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `pivot_table_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + conditional_formatting=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + conditional_formatting: conditional_formatting, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + radar_chart_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + base_series_settings:: { + area_style_settings:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings.new` constructs a new object with attributes and blocks configured for the `area_style_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `area_style_settings` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.new` constructs a new object with attributes and blocks configured for the `base_series_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `area_style_settings` (`list[obj]`): Set the `area_style_settings` field on the resulting object. When `null`, the `area_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationarea_style_settingsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `base_series_settings` sub block.\n', args=[]), + new( + area_style_settings=null + ):: std.prune(a={ + area_style_settings: area_style_settings, + }), + }, + category_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + color_axis:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.new` constructs a new object with attributes and blocks configured for the `color_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_axis` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axislabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + color_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `radar_chart_aggregated_field_wells` (`list[obj]`): Set the `radar_chart_aggregated_field_wells` field on the resulting object. When `null`, the `radar_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationradar_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + radar_chart_aggregated_field_wells=null + ):: std.prune(a={ + radar_chart_aggregated_field_wells: radar_chart_aggregated_field_wells, + }), + radar_chart_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + color:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `radar_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellscategorynew) constructor.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellscolornew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `radar_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + color=null, + values=null + ):: std.prune(a={ + category: category, + color: color, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `alternate_band_colors_visibility` (`string`): Set the `alternate_band_colors_visibility` field on the resulting object. When `null`, the `alternate_band_colors_visibility` field will be omitted from the resulting object.\n - `alternate_band_even_color` (`string`): Set the `alternate_band_even_color` field on the resulting object. When `null`, the `alternate_band_even_color` field will be omitted from the resulting object.\n - `alternate_band_odd_color` (`string`): Set the `alternate_band_odd_color` field on the resulting object. When `null`, the `alternate_band_odd_color` field will be omitted from the resulting object.\n - `shape` (`string`): Set the `shape` field on the resulting object. When `null`, the `shape` field will be omitted from the resulting object.\n - `start_angle` (`number`): Set the `start_angle` field on the resulting object. When `null`, the `start_angle` field will be omitted from the resulting object.\n - `base_series_settings` (`list[obj]`): Set the `base_series_settings` field on the resulting object. When `null`, the `base_series_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualbase_series_settingsnew) constructor.\n - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcategory_axisnew) constructor.\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcategory_label_optionsnew) constructor.\n - `color_axis` (`list[obj]`): Set the `color_axis` field on the resulting object. When `null`, the `color_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolor_axisnew) constructor.\n - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolor_label_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visuallegendnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualsort_configurationnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualvisual_palettenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + alternate_band_colors_visibility=null, + alternate_band_even_color=null, + alternate_band_odd_color=null, + base_series_settings=null, + category_axis=null, + category_label_options=null, + color_axis=null, + color_label_options=null, + field_wells=null, + legend=null, + shape=null, + sort_configuration=null, + start_angle=null, + visual_palette=null + ):: std.prune(a={ + alternate_band_colors_visibility: alternate_band_colors_visibility, + alternate_band_even_color: alternate_band_even_color, + alternate_band_odd_color: alternate_band_odd_color, + base_series_settings: base_series_settings, + category_axis: category_axis, + category_label_options: category_label_options, + color_axis: color_axis, + color_label_options: color_label_options, + field_wells: field_wells, + legend: legend, + shape: shape, + sort_configuration: sort_configuration, + start_angle: start_angle, + visual_palette: visual_palette, + }), + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + color_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `color_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + color_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_sortnew) constructor.\n - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_items_limitnew) constructor.\n - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null, + color_items_limit=null, + color_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + color_items_limit: color_items_limit, + color_sort: color_sort, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.new` constructs a new object with attributes and blocks configured for the `radar_chart_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `radar_chart_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + sankey_diagram_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `sankey_diagram_aggregated_field_wells` (`list[obj]`): Set the `sankey_diagram_aggregated_field_wells` field on the resulting object. When `null`, the `sankey_diagram_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsankey_diagram_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + sankey_diagram_aggregated_field_wells=null + ):: std.prune(a={ + sankey_diagram_aggregated_field_wells: sankey_diagram_aggregated_field_wells, + }), + sankey_diagram_aggregated_field_wells:: { + destination:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.new` constructs a new object with attributes and blocks configured for the `destination`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `destination` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `sankey_diagram_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination` (`list[obj]`): Set the `destination` field on the resulting object. When `null`, the `destination` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellsdestinationnew) constructor.\n - `source` (`list[obj]`): Set the `source` field on the resulting object. When `null`, the `source` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssourcenew) constructor.\n - `weight` (`list[obj]`): Set the `weight` field on the resulting object. When `null`, the `weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellsweightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sankey_diagram_aggregated_field_wells` sub block.\n', args=[]), + new( + destination=null, + source=null, + weight=null + ):: std.prune(a={ + destination: destination, + source: source, + weight: weight, + }), + source:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.new` constructs a new object with attributes and blocks configured for the `source`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + weight:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.new` constructs a new object with attributes and blocks configured for the `weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `weight` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualfield_wellsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualsort_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + data_labels=null, + field_wells=null, + sort_configuration=null + ):: std.prune(a={ + data_labels: data_labels, + field_wells: field_wells, + sort_configuration: sort_configuration, + }), + sort_configuration:: { + destination_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit.new` constructs a new object with attributes and blocks configured for the `destination_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `destination_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_items_limit` (`list[obj]`): Set the `destination_items_limit` field on the resulting object. When `null`, the `destination_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdestination_items_limitnew) constructor.\n - `source_items_limit` (`list[obj]`): Set the `source_items_limit` field on the resulting object. When `null`, the `source_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsource_items_limitnew) constructor.\n - `weight_sort` (`list[obj]`): Set the `weight_sort` field on the resulting object. When `null`, the `weight_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationweight_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + destination_items_limit=null, + source_items_limit=null, + weight_sort=null + ):: std.prune(a={ + destination_items_limit: destination_items_limit, + source_items_limit: source_items_limit, + weight_sort: weight_sort, + }), + source_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit.new` constructs a new object with attributes and blocks configured for the `source_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `source_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + weight_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.new` constructs a new object with attributes and blocks configured for the `weight_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `weight_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.new` constructs a new object with attributes and blocks configured for the `sankey_diagram_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sankey_diagram_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + scatter_plot_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `scatter_plot_categorically_aggregated_field_wells` (`list[obj]`): Set the `scatter_plot_categorically_aggregated_field_wells` field on the resulting object. When `null`, the `scatter_plot_categorically_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscatter_plot_categorically_aggregated_field_wellsnew) constructor.\n - `scatter_plot_unaggregated_field_wells` (`list[obj]`): Set the `scatter_plot_unaggregated_field_wells` field on the resulting object. When `null`, the `scatter_plot_unaggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscatter_plot_unaggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + scatter_plot_categorically_aggregated_field_wells=null, + scatter_plot_unaggregated_field_wells=null + ):: std.prune(a={ + scatter_plot_categorically_aggregated_field_wells: scatter_plot_categorically_aggregated_field_wells, + scatter_plot_unaggregated_field_wells: scatter_plot_unaggregated_field_wells, + }), + scatter_plot_categorically_aggregated_field_wells:: { + category:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `scatter_plot_categorically_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellscategorynew) constructor.\n - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellssizenew) constructor.\n - `x_axis` (`list[obj]`): Set the `x_axis` field on the resulting object. When `null`, the `x_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsx_axisnew) constructor.\n - `y_axis` (`list[obj]`): Set the `y_axis` field on the resulting object. When `null`, the `y_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsy_axisnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scatter_plot_categorically_aggregated_field_wells` sub block.\n', args=[]), + new( + category=null, + size=null, + x_axis=null, + y_axis=null + ):: std.prune(a={ + category: category, + size: size, + x_axis: x_axis, + y_axis: y_axis, + }), + size:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `size` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + x_axis:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.new` constructs a new object with attributes and blocks configured for the `x_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + y_axis:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.new` constructs a new object with attributes and blocks configured for the `y_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `y_axis` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + scatter_plot_unaggregated_field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `scatter_plot_unaggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellssizenew) constructor.\n - `x_axis` (`list[obj]`): Set the `x_axis` field on the resulting object. When `null`, the `x_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsx_axisnew) constructor.\n - `y_axis` (`list[obj]`): Set the `y_axis` field on the resulting object. When `null`, the `y_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsy_axisnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scatter_plot_unaggregated_field_wells` sub block.\n', args=[]), + new( + size=null, + x_axis=null, + y_axis=null + ):: std.prune(a={ + size: size, + x_axis: x_axis, + y_axis: y_axis, + }), + size:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `size` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + x_axis:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.new` constructs a new object with attributes and blocks configured for the `x_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + y_axis:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.new` constructs a new object with attributes and blocks configured for the `y_axis`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `y_axis` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + }, + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visuallegendnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualtooltipnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualvisual_palettenew) constructor.\n - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualx_axis_display_optionsnew) constructor.\n - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualx_axis_label_optionsnew) constructor.\n - `y_axis_display_options` (`list[obj]`): Set the `y_axis_display_options` field on the resulting object. When `null`, the `y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualy_axis_display_optionsnew) constructor.\n - `y_axis_label_options` (`list[obj]`): Set the `y_axis_label_options` field on the resulting object. When `null`, the `y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualy_axis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + data_labels=null, + field_wells=null, + legend=null, + tooltip=null, + visual_palette=null, + x_axis_display_options=null, + x_axis_label_options=null, + y_axis_display_options=null, + y_axis_label_options=null + ):: std.prune(a={ + data_labels: data_labels, + field_wells: field_wells, + legend: legend, + tooltip: tooltip, + visual_palette: visual_palette, + x_axis_display_options: x_axis_display_options, + x_axis_label_options: x_axis_label_options, + y_axis_display_options: y_axis_display_options, + y_axis_label_options: y_axis_label_options, + }), + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + x_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + x_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `x_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.new` constructs a new object with attributes and blocks configured for the `scatter_plot_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scatter_plot_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + table_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualstable_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + field_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.new` constructs a new object with attributes and blocks configured for the `field_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `order` (`list`): Set the `order` field on the resulting object. When `null`, the `order` field will be omitted from the resulting object.\n - `selected_field_options` (`list[obj]`): Set the `selected_field_options` field on the resulting object. When `null`, the `selected_field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationselected_field_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_options` sub block.\n', args=[]), + new( + order=null, + selected_field_options=null + ):: std.prune(a={ + order: order, + selected_field_options: selected_field_options, + }), + selected_field_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.new` constructs a new object with attributes and blocks configured for the `selected_field_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `url_styling` (`list[obj]`): Set the `url_styling` field on the resulting object. When `null`, the `url_styling` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsurl_stylingnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `selected_field_options` sub block.\n', args=[]), + new( + field_id, + custom_label=null, + url_styling=null, + visibility=null, + width=null + ):: std.prune(a={ + custom_label: custom_label, + field_id: field_id, + url_styling: url_styling, + visibility: visibility, + width: width, + }), + url_styling:: { + image_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.new` constructs a new object with attributes and blocks configured for the `image_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `sizing_options` (`list[obj]`): Set the `sizing_options` field on the resulting object. When `null`, the `sizing_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingsizing_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_configuration` sub block.\n', args=[]), + new( + sizing_options=null + ):: std.prune(a={ + sizing_options: sizing_options, + }), + sizing_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options.new` constructs a new object with attributes and blocks configured for the `sizing_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `table_cell_image_scaling_configuration` (`string`): Set the `table_cell_image_scaling_configuration` field on the resulting object. When `null`, the `table_cell_image_scaling_configuration` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sizing_options` sub block.\n', args=[]), + new( + table_cell_image_scaling_configuration=null + ):: std.prune(a={ + table_cell_image_scaling_configuration: table_cell_image_scaling_configuration, + }), + }, + }, + link_configuration:: { + content:: { + custom_icon_content:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content.new` constructs a new object with attributes and blocks configured for the `custom_icon_content`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_icon_content` sub block.\n', args=[]), + new( + icon=null + ):: std.prune(a={ + icon: icon, + }), + }, + custom_text_content:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.new` constructs a new object with attributes and blocks configured for the `custom_text_content`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_text_content` sub block.\n', args=[]), + new( + font_configuration=null, + value=null + ):: std.prune(a={ + font_configuration: font_configuration, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.new` constructs a new object with attributes and blocks configured for the `content`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_icon_content` (`list[obj]`): Set the `custom_icon_content` field on the resulting object. When `null`, the `custom_icon_content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcustom_icon_contentnew) constructor.\n - `custom_text_content` (`list[obj]`): Set the `custom_text_content` field on the resulting object. When `null`, the `custom_text_content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcustom_text_contentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `content` sub block.\n', args=[]), + new( + custom_icon_content=null, + custom_text_content=null + ):: std.prune(a={ + custom_icon_content: custom_icon_content, + custom_text_content: custom_text_content, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.new` constructs a new object with attributes and blocks configured for the `link_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target` (`string`): Set the `target` field on the resulting object. When `null`, the `target` field will be omitted from the resulting object.\n - `content` (`list[obj]`): Set the `content` field on the resulting object. When `null`, the `content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingcontentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `link_configuration` sub block.\n', args=[]), + new( + content=null, + target=null + ):: std.prune(a={ + content: content, + target: target, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.new` constructs a new object with attributes and blocks configured for the `url_styling`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_configuration` (`list[obj]`): Set the `image_configuration` field on the resulting object. When `null`, the `image_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsimage_configurationnew) constructor.\n - `link_configuration` (`list[obj]`): Set the `link_configuration` field on the resulting object. When `null`, the `link_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionslink_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `url_styling` sub block.\n', args=[]), + new( + image_configuration=null, + link_configuration=null + ):: std.prune(a={ + image_configuration: image_configuration, + link_configuration: link_configuration, + }), + }, + }, + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `table_aggregated_field_wells` (`list[obj]`): Set the `table_aggregated_field_wells` field on the resulting object. When `null`, the `table_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_aggregated_field_wellsnew) constructor.\n - `table_unaggregated_field_wells` (`list[obj]`): Set the `table_unaggregated_field_wells` field on the resulting object. When `null`, the `table_unaggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_unaggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + table_aggregated_field_wells=null, + table_unaggregated_field_wells=null + ):: std.prune(a={ + table_aggregated_field_wells: table_aggregated_field_wells, + table_unaggregated_field_wells: table_unaggregated_field_wells, + }), + table_aggregated_field_wells:: { + group_by:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `group_by` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `table_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsgroup_bynew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_aggregated_field_wells` sub block.\n', args=[]), + new( + group_by=null, + values=null + ):: std.prune(a={ + group_by: group_by, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + table_unaggregated_field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `table_unaggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_unaggregated_field_wells` sub block.\n', args=[]), + new( + values=null + ):: std.prune(a={ + values: values, + }), + values:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + date_time_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.new` constructs a new object with attributes and blocks configured for the `date_time_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format_configuration` (`list[obj]`): Set the `date_time_format_configuration` field on the resulting object. When `null`, the `date_time_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesdate_time_format_configurationnew) constructor.\n - `number_format_configuration` (`list[obj]`): Set the `number_format_configuration` field on the resulting object. When `null`, the `number_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesnumber_format_configurationnew) constructor.\n - `string_format_configuration` (`list[obj]`): Set the `string_format_configuration` field on the resulting object. When `null`, the `string_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesstring_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format_configuration=null, + number_format_configuration=null, + string_format_configuration=null + ):: std.prune(a={ + date_time_format_configuration: date_time_format_configuration, + number_format_configuration: number_format_configuration, + string_format_configuration: string_format_configuration, + }), + number_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + string_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.new` constructs a new object with attributes and blocks configured for the `string_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `string_format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_options` (`list[obj]`): Set the `field_options` field on the resulting object. When `null`, the `field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.new](#fn-definitiondefinitionsheetsvisualstable_visualfield_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualfield_wellsnew) constructor.\n - `paginated_report_options` (`list[obj]`): Set the `paginated_report_options` field on the resulting object. When `null`, the `paginated_report_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options.new](#fn-definitiondefinitionsheetsvisualstable_visualpaginated_report_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualsort_configurationnew) constructor.\n - `table_inline_visualizations` (`list[obj]`): Set the `table_inline_visualizations` field on the resulting object. When `null`, the `table_inline_visualizations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.new](#fn-definitiondefinitionsheetsvisualstable_visualtable_inline_visualizationsnew) constructor.\n - `table_options` (`list[obj]`): Set the `table_options` field on the resulting object. When `null`, the `table_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.new](#fn-definitiondefinitionsheetsvisualstable_visualtable_optionsnew) constructor.\n - `total_options` (`list[obj]`): Set the `total_options` field on the resulting object. When `null`, the `total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.new](#fn-definitiondefinitionsheetsvisualstable_visualtotal_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + field_options=null, + field_wells=null, + paginated_report_options=null, + sort_configuration=null, + table_inline_visualizations=null, + table_options=null, + total_options=null + ):: std.prune(a={ + field_options: field_options, + field_wells: field_wells, + paginated_report_options: paginated_report_options, + sort_configuration: sort_configuration, + table_inline_visualizations: table_inline_visualizations, + table_options: table_options, + total_options: total_options, + }), + paginated_report_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options.new` constructs a new object with attributes and blocks configured for the `paginated_report_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `overflow_column_header_visibility` (`string`): Set the `overflow_column_header_visibility` field on the resulting object. When `null`, the `overflow_column_header_visibility` field will be omitted from the resulting object.\n - `vertical_overflow_visibility` (`string`): Set the `vertical_overflow_visibility` field on the resulting object. When `null`, the `vertical_overflow_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `paginated_report_options` sub block.\n', args=[]), + new( + overflow_column_header_visibility=null, + vertical_overflow_visibility=null + ):: std.prune(a={ + overflow_column_header_visibility: overflow_column_header_visibility, + vertical_overflow_visibility: vertical_overflow_visibility, + }), + }, + sort_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `pagination_configuration` (`list[obj]`): Set the `pagination_configuration` field on the resulting object. When `null`, the `pagination_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationpagination_configurationnew) constructor.\n - `row_sort` (`list[obj]`): Set the `row_sort` field on the resulting object. When `null`, the `row_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationrow_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + pagination_configuration=null, + row_sort=null + ):: std.prune(a={ + pagination_configuration: pagination_configuration, + row_sort: row_sort, + }), + pagination_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration.new` constructs a new object with attributes and blocks configured for the `pagination_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `page_number` (`number`): Set the `page_number` field on the resulting object.\n - `page_size` (`number`): Set the `page_size` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `pagination_configuration` sub block.\n', args=[]), + new( + page_number, + page_size + ):: std.prune(a={ + page_number: page_number, + page_size: page_size, + }), + }, + row_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.new` constructs a new object with attributes and blocks configured for the `row_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + table_inline_visualizations:: { + data_bars:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars.new` constructs a new object with attributes and blocks configured for the `data_bars`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `negative_color` (`string`): Set the `negative_color` field on the resulting object. When `null`, the `negative_color` field will be omitted from the resulting object.\n - `positive_color` (`string`): Set the `positive_color` field on the resulting object. When `null`, the `positive_color` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_bars` sub block.\n', args=[]), + new( + field_id, + negative_color=null, + positive_color=null + ):: std.prune(a={ + field_id: field_id, + negative_color: negative_color, + positive_color: positive_color, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.new` constructs a new object with attributes and blocks configured for the `table_inline_visualizations`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_bars` (`list[obj]`): Set the `data_bars` field on the resulting object. When `null`, the `data_bars` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationdata_barsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_inline_visualizations` sub block.\n', args=[]), + new( + data_bars=null + ):: std.prune(a={ + data_bars: data_bars, + }), + }, + table_options:: { + cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.new` constructs a new object with attributes and blocks configured for the `cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + header_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.new` constructs a new object with attributes and blocks configured for the `header_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `header_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.new` constructs a new object with attributes and blocks configured for the `table_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `orientation` (`string`): Set the `orientation` field on the resulting object. When `null`, the `orientation` field will be omitted from the resulting object.\n - `cell_style` (`list[obj]`): Set the `cell_style` field on the resulting object. When `null`, the `cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationcell_stylenew) constructor.\n - `header_style` (`list[obj]`): Set the `header_style` field on the resulting object. When `null`, the `header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationheader_stylenew) constructor.\n - `row_alternate_color_options` (`list[obj]`): Set the `row_alternate_color_options` field on the resulting object. When `null`, the `row_alternate_color_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationrow_alternate_color_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_options` sub block.\n', args=[]), + new( + cell_style=null, + header_style=null, + orientation=null, + row_alternate_color_options=null + ):: std.prune(a={ + cell_style: cell_style, + header_style: header_style, + orientation: orientation, + row_alternate_color_options: row_alternate_color_options, + }), + row_alternate_color_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options.new` constructs a new object with attributes and blocks configured for the `row_alternate_color_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `row_alternate_colors` (`list`): Set the `row_alternate_colors` field on the resulting object. When `null`, the `row_alternate_colors` field will be omitted from the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `row_alternate_color_options` sub block.\n', args=[]), + new( + row_alternate_colors=null, + status=null + ):: std.prune(a={ + row_alternate_colors: row_alternate_colors, + status: status, + }), + }, + }, + total_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.new` constructs a new object with attributes and blocks configured for the `total_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object.\n - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object.\n - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object.\n - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_cell_stylenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_options` sub block.\n', args=[]), + new( + custom_label=null, + placement=null, + scroll_status=null, + total_cell_style=null, + totals_visibility=null + ):: std.prune(a={ + custom_label: custom_label, + placement: placement, + scroll_status: scroll_status, + total_cell_style: total_cell_style, + totals_visibility: totals_visibility, + }), + total_cell_style:: { + border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border`\nTerraform sub block.\n\n\n\n**Args**:\n - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleside_specific_bordernew) constructor.\n - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleuniform_bordernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `border` sub block.\n', args=[]), + new( + side_specific_border=null, + uniform_border=null + ):: std.prune(a={ + side_specific_border: side_specific_border, + uniform_border: uniform_border, + }), + side_specific_border:: { + bottom:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `bottom` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_horizontal:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_horizontal` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + inner_vertical:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `inner_vertical` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + left:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `left` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderbottomnew) constructor.\n - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor.\n - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderinner_verticalnew) constructor.\n - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderleftnew) constructor.\n - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderrightnew) constructor.\n - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylebordertopnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `side_specific_border` sub block.\n', args=[]), + new( + bottom=null, + inner_horizontal=null, + inner_vertical=null, + left=null, + right=null, + top=null + ):: std.prune(a={ + bottom: bottom, + inner_horizontal: inner_horizontal, + inner_vertical: inner_vertical, + left: left, + right: right, + top: top, + }), + right:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `right` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + top:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `top` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + uniform_border:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object.\n - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `uniform_border` sub block.\n', args=[]), + new( + color=null, + style=null, + thickness=null + ):: std.prune(a={ + color: color, + style: style, + thickness: thickness, + }), + }, + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object.\n - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object.\n - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object.\n - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionsbordernew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `total_cell_style` sub block.\n', args=[]), + new( + background_color=null, + border=null, + font_configuration=null, + height=null, + horizontal_text_alignment=null, + text_wrap=null, + vertical_text_alignment=null, + visibility=null + ):: std.prune(a={ + background_color: background_color, + border: border, + font_configuration: font_configuration, + height: height, + horizontal_text_alignment: horizontal_text_alignment, + text_wrap: text_wrap, + vertical_text_alignment: vertical_text_alignment, + visibility: visibility, + }), + }, + }, + }, + conditional_formatting:: { + conditional_formatting_options:: { + cell:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.new` constructs a new object with attributes and blocks configured for the `cell`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `text_format` (`list[obj]`): Set the `text_format` field on the resulting object. When `null`, the `text_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionstext_formatnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `cell` sub block.\n', args=[]), + new( + field_id, + text_format=null + ):: std.prune(a={ + field_id: field_id, + text_format: text_format, + }), + text_format:: { + background_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `background_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + icon:: { + custom_condition:: { + display_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `display_configuration` sub block.\n', args=[]), + new( + icon_display_option=null + ):: std.prune(a={ + icon_display_option: icon_display_option, + }), + }, + icon_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object.\n - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_options` sub block.\n', args=[]), + new( + icon=null, + unicode_icon=null + ):: std.prune(a={ + icon: icon, + unicode_icon: unicode_icon, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticondisplay_configurationnew) constructor.\n - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_condition` sub block.\n', args=[]), + new( + expression, + color=null, + display_configuration=null, + icon_options=null + ):: std.prune(a={ + color: color, + display_configuration: display_configuration, + expression: expression, + icon_options: icon_options, + }), + }, + icon_set:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `icon_set` sub block.\n', args=[]), + new( + expression, + icon_set_type=null + ):: std.prune(a={ + expression: expression, + icon_set_type: icon_set_type, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new` constructs a new object with attributes and blocks configured for the `icon`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatcustom_conditionnew) constructor.\n - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticon_setnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `icon` sub block.\n', args=[]), + new( + custom_condition=null, + icon_set=null + ):: std.prune(a={ + custom_condition: custom_condition, + icon_set: icon_set, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new` constructs a new object with attributes and blocks configured for the `text_format`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscellbackground_colornew) constructor.\n - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelliconnew) constructor.\n - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_format` sub block.\n', args=[]), + new( + background_color=null, + icon=null, + text_color=null + ):: std.prune(a={ + background_color: background_color, + icon: icon, + text_color: text_color, + }), + text_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new` constructs a new object with attributes and blocks configured for the `text_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `cell` (`list[obj]`): Set the `cell` field on the resulting object. When `null`, the `cell` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingcellnew) constructor.\n - `row` (`list[obj]`): Set the `row` field on the resulting object. When `null`, the `row` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingrownew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting_options` sub block.\n', args=[]), + new( + cell=null, + row=null + ):: std.prune(a={ + cell: cell, + row: row, + }), + row:: { + background_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.new` constructs a new object with attributes and blocks configured for the `background_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `background_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.new` constructs a new object with attributes and blocks configured for the `row`\nTerraform sub block.\n\n\n\n**Args**:\n - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsbackground_colornew) constructor.\n - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `row` sub block.\n', args=[]), + new( + background_color=null, + text_color=null + ):: std.prune(a={ + background_color: background_color, + text_color: text_color, + }), + text_color:: { + gradient:: { + color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color`\nTerraform sub block.\n\n\n\n**Args**:\n - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientstopsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color` sub block.\n', args=[]), + new( + stops=null + ):: std.prune(a={ + stops: stops, + }), + stops:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `stops` sub block.\n', args=[]), + new( + gradient_offset, + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + gradient_offset: gradient_offset, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorcolornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `gradient` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.new` constructs a new object with attributes and blocks configured for the `text_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowgradientnew) constructor.\n - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowsolidnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `text_color` sub block.\n', args=[]), + new( + gradient=null, + solid=null + ):: std.prune(a={ + gradient: gradient, + solid: solid, + }), + solid:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `expression` (`string`): Set the `expression` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `solid` sub block.\n', args=[]), + new( + expression, + color=null + ):: std.prune(a={ + color: color, + expression: expression, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting`\nTerraform sub block.\n\n\n\n**Args**:\n - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formatting_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_formatting` sub block.\n', args=[]), + new( + conditional_formatting_options=null + ):: std.prune(a={ + conditional_formatting_options: conditional_formatting_options, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.new` constructs a new object with attributes and blocks configured for the `table_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `table_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + conditional_formatting=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + conditional_formatting: conditional_formatting, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualstable_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.table_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualstable_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + tree_map_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualstree_map_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + color_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + color_scale:: { + colors:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.new` constructs a new object with attributes and blocks configured for the `color_scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `color_fill_type` (`string`): Set the `color_fill_type` field on the resulting object.\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolorsnew) constructor.\n - `null_value_color` (`list[obj]`): Set the `null_value_color` field on the resulting object. When `null`, the `null_value_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationnull_value_colornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_scale` sub block.\n', args=[]), + new( + color_fill_type, + colors=null, + null_value_color=null + ):: std.prune(a={ + color_fill_type: color_fill_type, + colors: colors, + null_value_color: null_value_color, + }), + null_value_color:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color.new` constructs a new object with attributes and blocks configured for the `null_value_color`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object.\n - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_color` sub block.\n', args=[]), + new( + color=null, + data_value=null + ):: std.prune(a={ + color: color, + data_value: data_value, + }), + }, + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `tree_map_aggregated_field_wells` (`list[obj]`): Set the `tree_map_aggregated_field_wells` field on the resulting object. When `null`, the `tree_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + tree_map_aggregated_field_wells=null + ):: std.prune(a={ + tree_map_aggregated_field_wells: tree_map_aggregated_field_wells, + }), + tree_map_aggregated_field_wells:: { + colors:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `colors` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + groups:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.new` constructs a new object with attributes and blocks configured for the `groups`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `groups` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `tree_map_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellscolorsnew) constructor.\n - `groups` (`list[obj]`): Set the `groups` field on the resulting object. When `null`, the `groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellsgroupsnew) constructor.\n - `sizes` (`list[obj]`): Set the `sizes` field on the resulting object. When `null`, the `sizes` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellssizesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tree_map_aggregated_field_wells` sub block.\n', args=[]), + new( + colors=null, + groups=null, + sizes=null + ):: std.prune(a={ + colors: colors, + groups: groups, + sizes: sizes, + }), + sizes:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.new` constructs a new object with attributes and blocks configured for the `sizes`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sizes` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + group_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.new` constructs a new object with attributes and blocks configured for the `group_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `group_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolor_label_optionsnew) constructor.\n - `color_scale` (`list[obj]`): Set the `color_scale` field on the resulting object. When `null`, the `color_scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolor_scalenew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualstree_map_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualstree_map_visualfield_wellsnew) constructor.\n - `group_label_options` (`list[obj]`): Set the `group_label_options` field on the resulting object. When `null`, the `group_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualgroup_label_optionsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualstree_map_visuallegendnew) constructor.\n - `size_label_options` (`list[obj]`): Set the `size_label_options` field on the resulting object. When `null`, the `size_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualsize_label_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualsort_configurationnew) constructor.\n - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualstree_map_visualtooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + color_label_options=null, + color_scale=null, + data_labels=null, + field_wells=null, + group_label_options=null, + legend=null, + size_label_options=null, + sort_configuration=null, + tooltip=null + ):: std.prune(a={ + color_label_options: color_label_options, + color_scale: color_scale, + data_labels: data_labels, + field_wells: field_wells, + group_label_options: group_label_options, + legend: legend, + size_label_options: size_label_options, + sort_configuration: sort_configuration, + tooltip: tooltip, + }), + size_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.new` constructs a new object with attributes and blocks configured for the `size_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `size_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + sort_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `tree_map_group_items_limit_configuration` (`list[obj]`): Set the `tree_map_group_items_limit_configuration` field on the resulting object. When `null`, the `tree_map_group_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_group_items_limit_configurationnew) constructor.\n - `tree_map_sort` (`list[obj]`): Set the `tree_map_sort` field on the resulting object. When `null`, the `tree_map_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + tree_map_group_items_limit_configuration=null, + tree_map_sort=null + ):: std.prune(a={ + tree_map_group_items_limit_configuration: tree_map_group_items_limit_configuration, + tree_map_sort: tree_map_sort, + }), + tree_map_group_items_limit_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `tree_map_group_items_limit_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `tree_map_group_items_limit_configuration` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + tree_map_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.new` constructs a new object with attributes and blocks configured for the `tree_map_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tree_map_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + }, + tooltip:: { + field_base_tooltip:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object.\n - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object.\n - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_base_tooltip` sub block.\n', args=[]), + new( + aggregation_visibility=null, + tooltip_fields=null, + tooltip_title_type=null + ):: std.prune(a={ + aggregation_visibility: aggregation_visibility, + tooltip_fields: tooltip_fields, + tooltip_title_type: tooltip_title_type, + }), + tooltip_fields:: { + column_tooltip_item:: { + aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_tooltip_item` sub block.\n', args=[]), + new( + aggregation=null, + column=null, + label=null, + visibility=null + ):: std.prune(a={ + aggregation: aggregation, + column: column, + label: label, + visibility: visibility, + }), + }, + field_tooltip_item:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_tooltip_item` sub block.\n', args=[]), + new( + field_id, + label=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + label: label, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor.\n - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip_fields` sub block.\n', args=[]), + new( + column_tooltip_item=null, + field_tooltip_item=null + ):: std.prune(a={ + column_tooltip_item: column_tooltip_item, + field_tooltip_item: field_tooltip_item, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object.\n - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object.\n - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_base_tooltipnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tooltip` sub block.\n', args=[]), + new( + field_base_tooltip=null, + selected_tooltip_type=null, + tooltip_visibility=null + ):: std.prune(a={ + field_base_tooltip: field_base_tooltip, + selected_tooltip_type: selected_tooltip_type, + tooltip_visibility: tooltip_visibility, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.new` constructs a new object with attributes and blocks configured for the `tree_map_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tree_map_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualstree_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualstree_map_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + waterfall_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + category_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.new` constructs a new object with attributes and blocks configured for the `category_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + category_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.new` constructs a new object with attributes and blocks configured for the `category_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + data_labels:: { + data_label_types:: { + data_path_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_path_label_type` sub block.\n', args=[]), + new( + field_id=null, + field_value=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + visibility: visibility, + }), + }, + field_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_label_type` sub block.\n', args=[]), + new( + field_id=null, + visibility=null + ):: std.prune(a={ + field_id: field_id, + visibility: visibility, + }), + }, + maximum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `maximum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + minimum_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `minimum_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_path_label_typenew) constructor.\n - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfield_label_typenew) constructor.\n - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsmaximum_label_typenew) constructor.\n - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsminimum_label_typenew) constructor.\n - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_label_types` sub block.\n', args=[]), + new( + data_path_label_type=null, + field_label_type=null, + maximum_label_type=null, + minimum_label_type=null, + range_ends_label_type=null + ):: std.prune(a={ + data_path_label_type: data_path_label_type, + field_label_type: field_label_type, + maximum_label_type: maximum_label_type, + minimum_label_type: minimum_label_type, + range_ends_label_type: range_ends_label_type, + }), + range_ends_label_type:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `range_ends_label_type` sub block.\n', args=[]), + new( + visibility=null + ):: std.prune(a={ + visibility: visibility, + }), + }, + }, + label_font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object.\n - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object.\n - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object.\n - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object.\n - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_label_typesnew) constructor.\n - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlabel_font_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_labels` sub block.\n', args=[]), + new( + category_label_visibility=null, + data_label_types=null, + label_color=null, + label_content=null, + label_font_configuration=null, + measure_label_visibility=null, + overlap=null, + position=null, + visibility=null + ):: std.prune(a={ + category_label_visibility: category_label_visibility, + data_label_types: data_label_types, + label_color: label_color, + label_content: label_content, + label_font_configuration: label_font_configuration, + measure_label_visibility: measure_label_visibility, + overlap: overlap, + position: position, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `waterfall_chart_aggregated_field_wells` (`list[obj]`): Set the `waterfall_chart_aggregated_field_wells` field on the resulting object. When `null`, the `waterfall_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationwaterfall_chart_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + waterfall_chart_aggregated_field_wells=null + ):: std.prune(a={ + waterfall_chart_aggregated_field_wells: waterfall_chart_aggregated_field_wells, + }), + waterfall_chart_aggregated_field_wells:: { + breakdowns:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.new` constructs a new object with attributes and blocks configured for the `breakdowns`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `breakdowns` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + categories:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.new` constructs a new object with attributes and blocks configured for the `categories`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categories` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `waterfall_chart_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `breakdowns` (`list[obj]`): Set the `breakdowns` field on the resulting object. When `null`, the `breakdowns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellsbreakdownsnew) constructor.\n - `categories` (`list[obj]`): Set the `categories` field on the resulting object. When `null`, the `categories` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellscategoriesnew) constructor.\n - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellsvaluesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `waterfall_chart_aggregated_field_wells` sub block.\n', args=[]), + new( + breakdowns=null, + categories=null, + values=null + ):: std.prune(a={ + breakdowns: breakdowns, + categories: categories, + values: values, + }), + values:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `values` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + legend:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend`\nTerraform sub block.\n\n\n\n**Args**:\n - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object.\n - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `legend` sub block.\n', args=[]), + new( + height=null, + position=null, + title=null, + visibility=null, + width=null + ):: std.prune(a={ + height: height, + position: position, + title: title, + visibility: visibility, + width: width, + }), + title:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_axis_display_options` (`list[obj]`): Set the `category_axis_display_options` field on the resulting object. When `null`, the `category_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcategory_axis_display_optionsnew) constructor.\n - `category_axis_label_options` (`list[obj]`): Set the `category_axis_label_options` field on the resulting object. When `null`, the `category_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcategory_axis_label_optionsnew) constructor.\n - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualdata_labelsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualfield_wellsnew) constructor.\n - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualswaterfall_visuallegendnew) constructor.\n - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualprimary_y_axis_display_optionsnew) constructor.\n - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualprimary_y_axis_label_optionsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualsort_configurationnew) constructor.\n - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualvisual_palettenew) constructor.\n - `waterfall_chart_options` (`list[obj]`): Set the `waterfall_chart_options` field on the resulting object. When `null`, the `waterfall_chart_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualwaterfall_chart_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + category_axis_display_options=null, + category_axis_label_options=null, + data_labels=null, + field_wells=null, + legend=null, + primary_y_axis_display_options=null, + primary_y_axis_label_options=null, + sort_configuration=null, + visual_palette=null, + waterfall_chart_options=null + ):: std.prune(a={ + category_axis_display_options: category_axis_display_options, + category_axis_label_options: category_axis_label_options, + data_labels: data_labels, + field_wells: field_wells, + legend: legend, + primary_y_axis_display_options: primary_y_axis_display_options, + primary_y_axis_label_options: primary_y_axis_label_options, + sort_configuration: sort_configuration, + visual_palette: visual_palette, + waterfall_chart_options: waterfall_chart_options, + }), + primary_y_axis_display_options:: { + data_options:: { + date_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `date_axis_options` sub block.\n', args=[]), + new( + missing_date_visibility=null + ):: std.prune(a={ + missing_date_visibility: missing_date_visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor.\n - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `data_options` sub block.\n', args=[]), + new( + date_axis_options=null, + numeric_axis_options=null + ):: std.prune(a={ + date_axis_options: date_axis_options, + numeric_axis_options: numeric_axis_options, + }), + numeric_axis_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor.\n - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_axis_options` sub block.\n', args=[]), + new( + range=null, + scale=null + ):: std.prune(a={ + range: range, + scale: scale, + }), + range:: { + data_driven:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `data_driven` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + min_max:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max`\nTerraform sub block.\n\n\n\n**Args**:\n - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object.\n - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `min_max` sub block.\n', args=[]), + new( + maximum=null, + minimum=null + ):: std.prune(a={ + maximum: maximum, + minimum: minimum, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor.\n - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `range` sub block.\n', args=[]), + new( + data_driven=null, + min_max=null + ):: std.prune(a={ + data_driven: data_driven, + min_max: min_max, + }), + }, + scale:: { + linear:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear`\nTerraform sub block.\n\n\n\n**Args**:\n - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object.\n - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `linear` sub block.\n', args=[]), + new( + step_count=null, + step_size=null + ):: std.prune(a={ + step_count: step_count, + step_size: step_size, + }), + }, + logarithmic:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic`\nTerraform sub block.\n\n\n\n**Args**:\n - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `logarithmic` sub block.\n', args=[]), + new( + base=null + ):: std.prune(a={ + base: base, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale`\nTerraform sub block.\n\n\n\n**Args**:\n - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor.\n - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scale` sub block.\n', args=[]), + new( + linear=null, + logarithmic=null + ):: std.prune(a={ + linear: linear, + logarithmic: logarithmic, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object.\n - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object.\n - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object.\n - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_optionsnew) constructor.\n - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationscrollbar_optionsnew) constructor.\n - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtick_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_display_options` sub block.\n', args=[]), + new( + axis_line_visibility=null, + axis_offset=null, + data_options=null, + grid_line_visibility=null, + scrollbar_options=null, + tick_label_options=null + ):: std.prune(a={ + axis_line_visibility: axis_line_visibility, + axis_offset: axis_offset, + data_options: data_options, + grid_line_visibility: grid_line_visibility, + scrollbar_options: scrollbar_options, + tick_label_options: tick_label_options, + }), + scrollbar_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `scrollbar_options` sub block.\n', args=[]), + new( + visibility=null, + visible_range=null + ):: std.prune(a={ + visibility: visibility, + visible_range: visible_range, + }), + visible_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visible_range` sub block.\n', args=[]), + new( + percent_range=null + ):: std.prune(a={ + percent_range: percent_range, + }), + percent_range:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range`\nTerraform sub block.\n\n\n\n**Args**:\n - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object.\n - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percent_range` sub block.\n', args=[]), + new( + from=null, + to=null + ):: std.prune(a={ + from: from, + to: to, + }), + }, + }, + }, + tick_label_options:: { + label_options:: { + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `label_options` sub block.\n', args=[]), + new( + custom_label=null, + font_configuration=null, + visibility=null + ):: std.prune(a={ + custom_label: custom_label, + font_configuration: font_configuration, + visibility: visibility, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object.\n - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `tick_label_options` sub block.\n', args=[]), + new( + label_options=null, + rotation_angle=null + ):: std.prune(a={ + label_options: label_options, + rotation_angle: rotation_angle, + }), + }, + }, + primary_y_axis_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `primary_y_axis_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + sort_configuration:: { + breakdown_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit.new` constructs a new object with attributes and blocks configured for the `breakdown_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `breakdown_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `breakdown_items_limit` (`list[obj]`): Set the `breakdown_items_limit` field on the resulting object. When `null`, the `breakdown_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationbreakdown_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + breakdown_items_limit=null, + category_sort=null + ):: std.prune(a={ + breakdown_items_limit: breakdown_items_limit, + category_sort: category_sort, + }), + }, + visual_palette:: { + color_map:: { + element:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `field_value` (`string`): Set the `field_value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `element` sub block.\n', args=[]), + new( + field_id, + field_value + ):: std.prune(a={ + field_id: field_id, + field_value: field_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map`\nTerraform sub block.\n\n\n\n**Args**:\n - `color` (`string`): Set the `color` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object.\n - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationvisual_paletteelementnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `color_map` sub block.\n', args=[]), + new( + color, + element=null, + time_granularity=null + ):: std.prune(a={ + color: color, + element: element, + time_granularity: time_granularity, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette`\nTerraform sub block.\n\n\n\n**Args**:\n - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object.\n - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcolor_mapnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `visual_palette` sub block.\n', args=[]), + new( + chart_color=null, + color_map=null + ):: std.prune(a={ + chart_color: chart_color, + color_map: color_map, + }), + }, + waterfall_chart_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options.new` constructs a new object with attributes and blocks configured for the `waterfall_chart_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `total_bar_label` (`string`): Set the `total_bar_label` field on the resulting object. When `null`, the `total_bar_label` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `waterfall_chart_options` sub block.\n', args=[]), + new( + total_bar_label=null + ):: std.prune(a={ + total_bar_label: total_bar_label, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.new` constructs a new object with attributes and blocks configured for the `waterfall_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `waterfall_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + word_cloud_visual:: { + actions:: { + action_operations:: { + filter_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsselected_fields_configurationnew) constructor.\n - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationstarget_visuals_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `filter_operation` sub block.\n', args=[]), + new( + selected_fields_configuration=null, + target_visuals_configuration=null + ):: std.prune(a={ + selected_fields_configuration: selected_fields_configuration, + target_visuals_configuration: target_visuals_configuration, + }), + selected_fields_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object.\n - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `selected_fields_configuration` sub block.\n', args=[]), + new( + selected_field_option=null, + selected_fields=null + ):: std.prune(a={ + selected_field_option: selected_field_option, + selected_fields: selected_fields, + }), + }, + target_visuals_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `target_visuals_configuration` sub block.\n', args=[]), + new( + same_sheet_target_visual_configuration=null + ):: std.prune(a={ + same_sheet_target_visual_configuration: same_sheet_target_visual_configuration, + }), + same_sheet_target_visual_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object.\n - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `same_sheet_target_visual_configuration` sub block.\n', args=[]), + new( + target_visual_option=null, + target_visuals=null + ):: std.prune(a={ + target_visual_option: target_visual_option, + target_visuals: target_visuals, + }), + }, + }, + }, + navigation_operation:: { + local_navigation_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `local_navigation_configuration` sub block.\n', args=[]), + new( + target_sheet_id + ):: std.prune(a={ + target_sheet_id: target_sheet_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationslocal_navigation_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `navigation_operation` sub block.\n', args=[]), + new( + local_navigation_configuration=null + ):: std.prune(a={ + local_navigation_configuration: local_navigation_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations`\nTerraform sub block.\n\n\n\n**Args**:\n - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsfilter_operationnew) constructor.\n - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsnavigation_operationnew) constructor.\n - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsset_parameters_operationnew) constructor.\n - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsurl_operationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `action_operations` sub block.\n', args=[]), + new( + filter_operation=null, + navigation_operation=null, + set_parameters_operation=null, + url_operation=null + ):: std.prune(a={ + filter_operation: filter_operation, + navigation_operation: navigation_operation, + set_parameters_operation: set_parameters_operation, + url_operation: url_operation, + }), + set_parameters_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsparameter_value_configurationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `set_parameters_operation` sub block.\n', args=[]), + new( + parameter_value_configurations=null + ):: std.prune(a={ + parameter_value_configurations: parameter_value_configurations, + }), + parameter_value_configurations:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object.\n - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `parameter_value_configurations` sub block.\n', args=[]), + new( + destination_parameter_name, + value=null + ):: std.prune(a={ + destination_parameter_name: destination_parameter_name, + value: value, + }), + value:: { + custom_values_configuration:: { + custom_values:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object.\n - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object.\n - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object.\n - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_values` sub block.\n', args=[]), + new( + date_time_values=null, + decimal_values=null, + integer_values=null, + string_values=null + ):: std.prune(a={ + date_time_values: date_time_values, + decimal_values: decimal_values, + integer_values: integer_values, + string_values: string_values, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object.\n - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `custom_values_configuration` sub block.\n', args=[]), + new( + custom_values=null, + include_null_value=null + ):: std.prune(a={ + custom_values: custom_values, + include_null_value: include_null_value, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object.\n - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object.\n - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object.\n - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + custom_values_configuration=null, + select_all_value_options=null, + source_field=null, + source_parameter_name=null + ):: std.prune(a={ + custom_values_configuration: custom_values_configuration, + select_all_value_options: select_all_value_options, + source_field: source_field, + source_parameter_name: source_parameter_name, + }), + }, + }, + }, + url_operation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation`\nTerraform sub block.\n\n\n\n**Args**:\n - `url_target` (`string`): Set the `url_target` field on the resulting object.\n - `url_template` (`string`): Set the `url_template` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `url_operation` sub block.\n', args=[]), + new( + url_target, + url_template + ):: std.prune(a={ + url_target: url_target, + url_template: url_template, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `status` (`string`): Set the `status` field on the resulting object.\n - `trigger` (`string`): Set the `trigger` field on the resulting object.\n - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualaction_operationsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `actions` sub block.\n', args=[]), + new( + custom_action_id, + name, + status, + trigger, + action_operations=null + ):: std.prune(a={ + action_operations: action_operations, + custom_action_id: custom_action_id, + name: name, + status: status, + trigger: trigger, + }), + }, + chart_configuration:: { + category_label_options:: { + axis_label_options:: { + apply_to:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `apply_to` sub block.\n', args=[]), + new( + field_id, + column=null + ):: std.prune(a={ + column: column, + field_id: field_id, + }), + }, + font_configuration:: { + font_size:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size`\nTerraform sub block.\n\n\n\n**Args**:\n - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_size` sub block.\n', args=[]), + new( + relative=null + ):: std.prune(a={ + relative: relative, + }), + }, + font_weight:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `font_weight` sub block.\n', args=[]), + new( + name=null + ):: std.prune(a={ + name: name, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object.\n - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object.\n - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object.\n - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor.\n - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `font_configuration` sub block.\n', args=[]), + new( + font_color=null, + font_decoration=null, + font_size=null, + font_style=null, + font_weight=null + ):: std.prune(a={ + font_color: font_color, + font_decoration: font_decoration, + font_size: font_size, + font_style: font_style, + font_weight: font_weight, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object.\n - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsapply_tonew) constructor.\n - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `axis_label_options` sub block.\n', args=[]), + new( + apply_to=null, + custom_label=null, + font_configuration=null + ):: std.prune(a={ + apply_to: apply_to, + custom_label: custom_label, + font_configuration: font_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationaxis_label_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_label_options` sub block.\n', args=[]), + new( + axis_label_options=null, + sort_icon_visibility=null, + visibility=null + ):: std.prune(a={ + axis_label_options: axis_label_options, + sort_icon_visibility: sort_icon_visibility, + visibility: visibility, + }), + }, + field_wells:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `word_cloud_aggregated_field_wells` (`list[obj]`): Set the `word_cloud_aggregated_field_wells` field on the resulting object. When `null`, the `word_cloud_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationword_cloud_aggregated_field_wellsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `field_wells` sub block.\n', args=[]), + new( + word_cloud_aggregated_field_wells=null + ):: std.prune(a={ + word_cloud_aggregated_field_wells: word_cloud_aggregated_field_wells, + }), + word_cloud_aggregated_field_wells:: { + group_by:: { + categorical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + date_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + date_granularity=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + date_granularity: date_granularity, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscategorical_dimension_fieldnew) constructor.\n - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsdate_dimension_fieldnew) constructor.\n - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsnumerical_dimension_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `group_by` sub block.\n', args=[]), + new( + categorical_dimension_field=null, + date_dimension_field=null, + numerical_dimension_field=null + ):: std.prune(a={ + categorical_dimension_field: categorical_dimension_field, + date_dimension_field: date_dimension_field, + numerical_dimension_field: numerical_dimension_field, + }), + numerical_dimension_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_dimension_field` sub block.\n', args=[]), + new( + field_id, + column=null, + format_configuration=null, + hierarchy_id=null + ):: std.prune(a={ + column: column, + field_id: field_id, + format_configuration: format_configuration, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `word_cloud_aggregated_field_wells`\nTerraform sub block.\n\n\n\n**Args**:\n - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsgroup_bynew) constructor.\n - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellssizenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `word_cloud_aggregated_field_wells` sub block.\n', args=[]), + new( + group_by=null, + size=null + ):: std.prune(a={ + group_by: group_by, + size: size, + }), + size:: { + calculated_measure_field:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression` (`string`): Set the `expression` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `calculated_measure_field` sub block.\n', args=[]), + new( + expression, + field_id + ):: std.prune(a={ + expression: expression, + field_id: field_id, + }), + }, + categorical_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `categorical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + date_measure_field:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor.\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + date_time_format=null, + null_value_format_configuration=null, + numeric_format_configuration=null + ):: std.prune(a={ + date_time_format: date_time_format, + null_value_format_configuration: null_value_format_configuration, + numeric_format_configuration: numeric_format_configuration, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size`\nTerraform sub block.\n\n\n\n**Args**:\n - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscalculated_measure_fieldnew) constructor.\n - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscategorical_measure_fieldnew) constructor.\n - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsdate_measure_fieldnew) constructor.\n - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsnumerical_measure_fieldnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `size` sub block.\n', args=[]), + new( + calculated_measure_field=null, + categorical_measure_field=null, + date_measure_field=null, + numerical_measure_field=null + ):: std.prune(a={ + calculated_measure_field: calculated_measure_field, + categorical_measure_field: categorical_measure_field, + date_measure_field: date_measure_field, + numerical_measure_field: numerical_measure_field, + }), + numerical_measure_field:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `format_configuration` sub block.\n', args=[]), + new( + numeric_format_configuration=null + ):: std.prune(a={ + numeric_format_configuration: numeric_format_configuration, + }), + numeric_format_configuration:: { + currency_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `currency_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null, + symbol=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + symbol: symbol, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor.\n - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor.\n - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_format_configuration` sub block.\n', args=[]), + new( + currency_display_format_configuration=null, + number_display_format_configuration=null, + percentage_display_format_configuration=null + ):: std.prune(a={ + currency_display_format_configuration: currency_display_format_configuration, + number_display_format_configuration: number_display_format_configuration, + percentage_display_format_configuration: percentage_display_format_configuration, + }), + number_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object.\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `number_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + number_scale=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + number_scale: number_scale, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + percentage_display_format_configuration:: { + decimal_places_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `decimal_places_configuration` sub block.\n', args=[]), + new( + decimal_places + ):: std.prune(a={ + decimal_places: decimal_places, + }), + }, + negative_value_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `display_mode` (`string`): Set the `display_mode` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `negative_value_configuration` sub block.\n', args=[]), + new( + display_mode + ):: std.prune(a={ + display_mode: display_mode, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object.\n - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object.\n - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor.\n - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor.\n - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor.\n - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `percentage_display_format_configuration` sub block.\n', args=[]), + new( + decimal_places_configuration=null, + negative_value_configuration=null, + null_value_format_configuration=null, + prefix=null, + separator_configuration=null, + suffix=null + ):: std.prune(a={ + decimal_places_configuration: decimal_places_configuration, + negative_value_configuration: negative_value_configuration, + null_value_format_configuration: null_value_format_configuration, + prefix: prefix, + separator_configuration: separator_configuration, + suffix: suffix, + }), + null_value_format_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `null_string` (`string`): Set the `null_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `null_value_format_configuration` sub block.\n', args=[]), + new( + null_string + ):: std.prune(a={ + null_string: null_string, + }), + }, + separator_configuration:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object.\n - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor.\n\n**Returns**:\n - An attribute object that represents the `separator_configuration` sub block.\n', args=[]), + new( + decimal_separator=null, + thousands_separator=null + ):: std.prune(a={ + decimal_separator: decimal_separator, + thousands_separator: thousands_separator, + }), + thousands_separator:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator`\nTerraform sub block.\n\n\n\n**Args**:\n - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object.\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `thousands_separator` sub block.\n', args=[]), + new( + symbol=null, + visibility=null + ):: std.prune(a={ + symbol: symbol, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field`\nTerraform sub block.\n\n\n\n**Args**:\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeaggregation_functionnew) constructor.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor.\n - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_measure_field` sub block.\n', args=[]), + new( + field_id, + aggregation_function=null, + column=null, + format_configuration=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + column: column, + field_id: field_id, + format_configuration: format_configuration, + }), + }, + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcategory_label_optionsnew) constructor.\n - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualfield_wellsnew) constructor.\n - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualsort_configurationnew) constructor.\n - `word_cloud_options` (`list[obj]`): Set the `word_cloud_options` field on the resulting object. When `null`, the `word_cloud_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualword_cloud_optionsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `chart_configuration` sub block.\n', args=[]), + new( + category_label_options=null, + field_wells=null, + sort_configuration=null, + word_cloud_options=null + ):: std.prune(a={ + category_label_options: category_label_options, + field_wells: field_wells, + sort_configuration: sort_configuration, + word_cloud_options: word_cloud_options, + }), + sort_configuration:: { + category_items_limit:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit`\nTerraform sub block.\n\n\n\n**Args**:\n - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object.\n - `other_categories` (`string`): Set the `other_categories` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `category_items_limit` sub block.\n', args=[]), + new( + other_categories, + items_limit=null + ):: std.prune(a={ + items_limit: items_limit, + other_categories: other_categories, + }), + }, + category_sort:: { + column_sort:: { + aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object.\n - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object.\n - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `aggregation_function` sub block.\n', args=[]), + new( + categorical_aggregation_function=null, + date_aggregation_function=null, + numerical_aggregation_function=null + ):: std.prune(a={ + categorical_aggregation_function: categorical_aggregation_function, + date_aggregation_function: date_aggregation_function, + numerical_aggregation_function: numerical_aggregation_function, + }), + numerical_aggregation_function:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function`\nTerraform sub block.\n\n\n\n**Args**:\n - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object.\n - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numerical_aggregation_function` sub block.\n', args=[]), + new( + percentile_aggregation=null, + simple_numerical_aggregation=null + ):: std.prune(a={ + percentile_aggregation: percentile_aggregation, + simple_numerical_aggregation: simple_numerical_aggregation, + }), + percentile_aggregation:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation`\nTerraform sub block.\n\n\n\n**Args**:\n - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `percentile_aggregation` sub block.\n', args=[]), + new( + percentile_value=null + ):: std.prune(a={ + percentile_value: percentile_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor.\n - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_sort` sub block.\n', args=[]), + new( + direction, + aggregation_function=null, + sort_by=null + ):: std.prune(a={ + aggregation_function: aggregation_function, + direction: direction, + sort_by: sort_by, + }), + sort_by:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sort_by` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + }, + field_sort:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `direction` (`string`): Set the `direction` field on the resulting object.\n - `field_id` (`string`): Set the `field_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `field_sort` sub block.\n', args=[]), + new( + direction, + field_id + ):: std.prune(a={ + direction: direction, + field_id: field_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcolumn_sortnew) constructor.\n - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationfield_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_sort` sub block.\n', args=[]), + new( + column_sort=null, + field_sort=null + ):: std.prune(a={ + column_sort: column_sort, + field_sort: field_sort, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_items_limitnew) constructor.\n - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_sortnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `sort_configuration` sub block.\n', args=[]), + new( + category_items_limit=null, + category_sort=null + ):: std.prune(a={ + category_items_limit: category_items_limit, + category_sort: category_sort, + }), + }, + word_cloud_options:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options.new` constructs a new object with attributes and blocks configured for the `word_cloud_options`\nTerraform sub block.\n\n\n\n**Args**:\n - `cloud_layout` (`string`): Set the `cloud_layout` field on the resulting object. When `null`, the `cloud_layout` field will be omitted from the resulting object.\n - `maximum_string_length` (`number`): Set the `maximum_string_length` field on the resulting object. When `null`, the `maximum_string_length` field will be omitted from the resulting object.\n - `word_casing` (`string`): Set the `word_casing` field on the resulting object. When `null`, the `word_casing` field will be omitted from the resulting object.\n - `word_orientation` (`string`): Set the `word_orientation` field on the resulting object. When `null`, the `word_orientation` field will be omitted from the resulting object.\n - `word_padding` (`string`): Set the `word_padding` field on the resulting object. When `null`, the `word_padding` field will be omitted from the resulting object.\n - `word_scaling` (`string`): Set the `word_scaling` field on the resulting object. When `null`, the `word_scaling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `word_cloud_options` sub block.\n', args=[]), + new( + cloud_layout=null, + maximum_string_length=null, + word_casing=null, + word_orientation=null, + word_padding=null, + word_scaling=null + ):: std.prune(a={ + cloud_layout: cloud_layout, + maximum_string_length: maximum_string_length, + word_casing: word_casing, + word_orientation: word_orientation, + word_padding: word_padding, + word_scaling: word_scaling, + }), + }, + }, + column_hierarchies:: { + date_time_hierarchy:: { + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `date_time_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + drill_down_filters=null + ):: std.prune(a={ + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + explicit_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `explicit_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies`\nTerraform sub block.\n\n\n\n**Args**:\n - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualdate_time_hierarchynew) constructor.\n - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualexplicit_hierarchynew) constructor.\n - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualpredefined_hierarchynew) constructor.\n\n**Returns**:\n - An attribute object that represents the `column_hierarchies` sub block.\n', args=[]), + new( + date_time_hierarchy=null, + explicit_hierarchy=null, + predefined_hierarchy=null + ):: std.prune(a={ + date_time_hierarchy: date_time_hierarchy, + explicit_hierarchy: explicit_hierarchy, + predefined_hierarchy: predefined_hierarchy, + }), + predefined_hierarchy:: { + columns:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `columns` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + drill_down_filters:: { + category_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_values` (`list`): Set the `category_values` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `category_filter` sub block.\n', args=[]), + new( + category_values, + column=null + ):: std.prune(a={ + category_values: category_values, + column: column, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters`\nTerraform sub block.\n\n\n\n**Args**:\n - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor.\n - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor.\n - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor.\n\n**Returns**:\n - An attribute object that represents the `drill_down_filters` sub block.\n', args=[]), + new( + category_filter=null, + numeric_equality_filter=null, + time_range_filter=null + ):: std.prune(a={ + category_filter: category_filter, + numeric_equality_filter: numeric_equality_filter, + time_range_filter: time_range_filter, + }), + numeric_equality_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`number`): Set the `value` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `numeric_equality_filter` sub block.\n', args=[]), + new( + value, + column=null + ):: std.prune(a={ + column: column, + value: value, + }), + }, + time_range_filter:: { + column:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column`\nTerraform sub block.\n\n\n\n**Args**:\n - `column_name` (`string`): Set the `column_name` field on the resulting object.\n - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `column` sub block.\n', args=[]), + new( + column_name, + data_set_identifier + ):: std.prune(a={ + column_name: column_name, + data_set_identifier: data_set_identifier, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter`\nTerraform sub block.\n\n\n\n**Args**:\n - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object.\n - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object.\n - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object.\n - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `time_range_filter` sub block.\n', args=[]), + new( + range_maximum, + range_minimum, + time_granularity, + column=null + ):: std.prune(a={ + column: column, + range_maximum: range_maximum, + range_minimum: range_minimum, + time_granularity: time_granularity, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy`\nTerraform sub block.\n\n\n\n**Args**:\n - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object.\n - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiescolumnsnew) constructor.\n - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `predefined_hierarchy` sub block.\n', args=[]), + new( + hierarchy_id, + columns=null, + drill_down_filters=null + ):: std.prune(a={ + columns: columns, + drill_down_filters: drill_down_filters, + hierarchy_id: hierarchy_id, + }), + }, + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.new` constructs a new object with attributes and blocks configured for the `word_cloud_visual`\nTerraform sub block.\n\n\n\n**Args**:\n - `visual_id` (`string`): Set the `visual_id` field on the resulting object.\n - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor.\n - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor.\n - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor.\n - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor.\n - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `word_cloud_visual` sub block.\n', args=[]), + new( + visual_id, + actions=null, + chart_configuration=null, + column_hierarchies=null, + subtitle=null, + title=null + ):: std.prune(a={ + actions: actions, + chart_configuration: chart_configuration, + column_hierarchies: column_hierarchies, + subtitle: subtitle, + title: title, + visual_id: visual_id, + }), + subtitle:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `subtitle` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + title:: { + format_text:: { + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text`\nTerraform sub block.\n\n\n\n**Args**:\n - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object.\n - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `format_text` sub block.\n', args=[]), + new( + plain_text=null, + rich_text=null + ):: std.prune(a={ + plain_text: plain_text, + rich_text: rich_text, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.new` constructs a new object with attributes and blocks configured for the `title`\nTerraform sub block.\n\n\n\n**Args**:\n - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object.\n - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualformat_textnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `title` sub block.\n', args=[]), + new( + format_text=null, + visibility=null + ):: std.prune(a={ + format_text: format_text, + visibility: visibility, + }), + }, + }, + }, + }, + }, + '#new':: d.fn(help="\n`aws.quicksight_template.new` injects a new `aws_quicksight_template` 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.quicksight_template.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.quicksight_template` using the reference:\n\n $._ref.aws_quicksight_template.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_quicksight_template.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting resource block.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `template_id` (`string`): Set the `template_id` field on the resulting resource block.\n - `version_description` (`string`): Set the `version_description` field on the resulting resource block.\n - `definition` (`list[obj]`): Set the `definition` field on the resulting resource block. When `null`, the `definition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.new](#fn-definitionnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting resource block. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.permissions.new](#fn-permissionsnew) constructor.\n - `source_entity` (`list[obj]`): Set the `source_entity` field on the resulting resource block. When `null`, the `source_entity` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.new](#fn-source_entitynew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + new( + resourceLabel, + name, + template_id, + version_description, + aws_account_id=null, + definition=null, + permissions=null, + source_entity=null, + tags=null, + tags_all=null, + timeouts=null, + _meta={} + ):: tf.withResource( + type='aws_quicksight_template', + label=resourceLabel, + attrs=self.newAttrs( + aws_account_id=aws_account_id, + definition=definition, + name=name, + permissions=permissions, + source_entity=source_entity, + tags=tags, + tags_all=tags_all, + template_id=template_id, + timeouts=timeouts, + version_description=version_description + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.quicksight_template.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_template`\nTerraform resource.\n\nUnlike [aws.quicksight_template.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object.\n - `template_id` (`string`): Set the `template_id` field on the resulting object.\n - `version_description` (`string`): Set the `version_description` field on the resulting object.\n - `definition` (`list[obj]`): Set the `definition` field on the resulting object. When `null`, the `definition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.new](#fn-definitionnew) constructor.\n - `permissions` (`list[obj]`): Set the `permissions` field on the resulting object. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.permissions.new](#fn-permissionsnew) constructor.\n - `source_entity` (`list[obj]`): Set the `source_entity` field on the resulting object. When `null`, the `source_entity` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.new](#fn-source_entitynew) constructor.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.timeouts.new](#fn-timeoutsnew) constructor.\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 `quicksight_template` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + name, + template_id, + version_description, + aws_account_id=null, + definition=null, + permissions=null, + source_entity=null, + tags=null, + tags_all=null, + timeouts=null + ):: std.prune(a={ + aws_account_id: aws_account_id, + definition: definition, + name: name, + permissions: permissions, + source_entity: source_entity, + tags: tags, + tags_all: tags_all, + template_id: template_id, + timeouts: timeouts, + version_description: version_description, + }), + permissions:: { + '#new':: d.fn(help='\n`aws.quicksight_template.permissions.new` constructs a new object with attributes and blocks configured for the `permissions`\nTerraform sub block.\n\n\n\n**Args**:\n - `actions` (`list`): Set the `actions` field on the resulting object.\n - `principal` (`string`): Set the `principal` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `permissions` sub block.\n', args=[]), + new( + actions, + principal + ):: std.prune(a={ + actions: actions, + principal: principal, + }), + }, + source_entity:: { + '#new':: d.fn(help='\n`aws.quicksight_template.source_entity.new` constructs a new object with attributes and blocks configured for the `source_entity`\nTerraform sub block.\n\n\n\n**Args**:\n - `source_analysis` (`list[obj]`): Set the `source_analysis` field on the resulting object. When `null`, the `source_analysis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_analysis.new](#fn-source_entitysource_analysisnew) constructor.\n - `source_template` (`list[obj]`): Set the `source_template` field on the resulting object. When `null`, the `source_template` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_template.new](#fn-source_entitysource_templatenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_entity` sub block.\n', args=[]), + new( + source_analysis=null, + source_template=null + ):: std.prune(a={ + source_analysis: source_analysis, + source_template: source_template, + }), + source_analysis:: { + data_set_references:: { + '#new':: d.fn(help='\n`aws.quicksight_template.source_entity.source_analysis.data_set_references.new` constructs a new object with attributes and blocks configured for the `data_set_references`\nTerraform sub block.\n\n\n\n**Args**:\n - `data_set_arn` (`string`): Set the `data_set_arn` field on the resulting object.\n - `data_set_placeholder` (`string`): Set the `data_set_placeholder` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `data_set_references` sub block.\n', args=[]), + new( + data_set_arn, + data_set_placeholder + ):: std.prune(a={ + data_set_arn: data_set_arn, + data_set_placeholder: data_set_placeholder, + }), + }, + '#new':: d.fn(help='\n`aws.quicksight_template.source_entity.source_analysis.new` constructs a new object with attributes and blocks configured for the `source_analysis`\nTerraform sub block.\n\n\n\n**Args**:\n - `arn` (`string`): Set the `arn` field on the resulting object.\n - `data_set_references` (`list[obj]`): Set the `data_set_references` field on the resulting object. When `null`, the `data_set_references` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_analysis.data_set_references.new](#fn-source_entitysource_entitydata_set_referencesnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `source_analysis` sub block.\n', args=[]), + new( + arn, + data_set_references=null + ):: std.prune(a={ + arn: arn, + data_set_references: data_set_references, + }), + }, + source_template:: { + '#new':: d.fn(help='\n`aws.quicksight_template.source_entity.source_template.new` constructs a new object with attributes and blocks configured for the `source_template`\nTerraform sub block.\n\n\n\n**Args**:\n - `arn` (`string`): Set the `arn` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `source_template` sub block.\n', args=[]), + new( + arn + ):: std.prune(a={ + arn: arn, + }), + }, + }, + timeouts:: { + '#new':: d.fn(help='\n`aws.quicksight_template.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts`\nTerraform sub block.\n\n\n\n**Args**:\n - `create` (`string`): Set the `create` field on the resulting object. When `null`, the `create` field will be omitted from the resulting object.\n - `delete` (`string`): Set the `delete` field on the resulting object. When `null`, the `delete` field will be omitted from the resulting object.\n - `update` (`string`): Set the `update` field on the resulting object. When `null`, the `update` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `timeouts` sub block.\n', args=[]), + new( + create=null, + delete=null, + update=null + ):: std.prune(a={ + create: create, + delete: delete, + update: update, + }), + }, + '#withAwsAccountId':: d.fn(help='`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the aws_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 `aws_account_id` field.\n', args=[]), + withAwsAccountId(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + aws_account_id: value, + }, + }, + }, + }, + '#withDefinition':: d.fn(help='`aws.list[obj].withDefinition` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the definition 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].withDefinitionMixin](TODO) function.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `definition` field.\n', args=[]), + withDefinition(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + definition: value, + }, + }, + }, + }, + '#withDefinitionMixin':: d.fn(help='`aws.list[obj].withDefinitionMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the definition 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].withDefinition](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `definition` field.\n', args=[]), + withDefinitionMixin(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + definition+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withName':: d.fn(help='`aws.string.withName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the name 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 `name` field.\n', args=[]), + withName(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + name: value, + }, + }, + }, + }, + '#withPermissions':: d.fn(help='`aws.list[obj].withPermissions` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the permissions 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].withPermissionsMixin](TODO) function.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `permissions` field.\n', args=[]), + withPermissions(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + permissions: value, + }, + }, + }, + }, + '#withPermissionsMixin':: d.fn(help='`aws.list[obj].withPermissionsMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the permissions 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].withPermissions](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `permissions` field.\n', args=[]), + withPermissionsMixin(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + permissions+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withSourceEntity':: d.fn(help='`aws.list[obj].withSourceEntity` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the source_entity 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].withSourceEntityMixin](TODO) function.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `source_entity` field.\n', args=[]), + withSourceEntity(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + source_entity: value, + }, + }, + }, + }, + '#withSourceEntityMixin':: d.fn(help='`aws.list[obj].withSourceEntityMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the source_entity 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].withSourceEntity](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `source_entity` field.\n', args=[]), + withSourceEntityMixin(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + source_entity+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the tags field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]), + withTags(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + tags: value, + }, + }, + }, + }, + '#withTagsAll':: d.fn(help='`aws.obj.withTagsAll` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the tags_all field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags_all` field.\n', args=[]), + withTagsAll(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + tags_all: value, + }, + }, + }, + }, + '#withTemplateId':: d.fn(help='`aws.string.withTemplateId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the template_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 `template_id` field.\n', args=[]), + withTemplateId(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + template_id: value, + }, + }, + }, + }, + '#withTimeouts':: d.fn(help='`aws.obj.withTimeouts` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will replace the map with the passed in `value`. If you wish to instead merge the\npassed in value to the existing map, use the [aws.obj.withTimeoutsMixin](TODO) function.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]), + withTimeouts(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + timeouts: value, + }, + }, + }, + }, + '#withTimeoutsMixin':: d.fn(help='`aws.obj.withTimeoutsMixin` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will merge the passed in value to the existing map. If you wish\nto instead replace the entire map with the passed in `value`, use the [aws.obj.withTimeouts](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]), + withTimeoutsMixin(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + timeouts+: value, + }, + }, + }, + }, + '#withVersionDescription':: d.fn(help='`aws.string.withVersionDescription` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the version_description 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 `version_description` field.\n', args=[]), + withVersionDescription(resourceLabel, value): { + resource+: { + aws_quicksight_template+: { + [resourceLabel]+: { + version_description: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/resources/quicksight_template_alias.libsonnet b/4.x/_gen/resources/quicksight_template_alias.libsonnet new file mode 100644 index 00000000..cb46d289 --- /dev/null +++ b/4.x/_gen/resources/quicksight_template_alias.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='quicksight_template_alias', url='', help='`quicksight_template_alias` represents the `aws_quicksight_template_alias` 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.quicksight_template_alias.new` injects a new `aws_quicksight_template_alias` 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.quicksight_template_alias.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.quicksight_template_alias` using the reference:\n\n $._ref.aws_quicksight_template_alias.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_quicksight_template_alias.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 - `alias_name` (`string`): Set the `alias_name` field on the resulting resource block.\n - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `template_id` (`string`): Set the `template_id` field on the resulting resource block.\n - `template_version_number` (`number`): Set the `template_version_number` 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, + alias_name, + template_id, + template_version_number, + aws_account_id=null, + _meta={} + ):: tf.withResource( + type='aws_quicksight_template_alias', + label=resourceLabel, + attrs=self.newAttrs( + alias_name=alias_name, + aws_account_id=aws_account_id, + template_id=template_id, + template_version_number=template_version_number + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.quicksight_template_alias.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_template_alias`\nTerraform resource.\n\nUnlike [aws.quicksight_template_alias.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 - `alias_name` (`string`): Set the `alias_name` field on the resulting object.\n - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `template_id` (`string`): Set the `template_id` field on the resulting object.\n - `template_version_number` (`number`): Set the `template_version_number` 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 `quicksight_template_alias` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + alias_name, + template_id, + template_version_number, + aws_account_id=null + ):: std.prune(a={ + alias_name: alias_name, + aws_account_id: aws_account_id, + template_id: template_id, + template_version_number: template_version_number, + }), + '#withAliasName':: d.fn(help='`aws.string.withAliasName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the alias_name 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 `alias_name` field.\n', args=[]), + withAliasName(resourceLabel, value): { + resource+: { + aws_quicksight_template_alias+: { + [resourceLabel]+: { + alias_name: value, + }, + }, + }, + }, + '#withAwsAccountId':: d.fn(help='`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the aws_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 `aws_account_id` field.\n', args=[]), + withAwsAccountId(resourceLabel, value): { + resource+: { + aws_quicksight_template_alias+: { + [resourceLabel]+: { + aws_account_id: value, + }, + }, + }, + }, + '#withTemplateId':: d.fn(help='`aws.string.withTemplateId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the template_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 `template_id` field.\n', args=[]), + withTemplateId(resourceLabel, value): { + resource+: { + aws_quicksight_template_alias+: { + [resourceLabel]+: { + template_id: value, + }, + }, + }, + }, + '#withTemplateVersionNumber':: d.fn(help='`aws.number.withTemplateVersionNumber` constructs a mixin object that can be merged into the `number`\nTerraform resource block to set or update the template_version_number field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`number`): The value to set for the `template_version_number` field.\n', args=[]), + withTemplateVersionNumber(resourceLabel, value): { + resource+: { + aws_quicksight_template_alias+: { + [resourceLabel]+: { + template_version_number: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/resources/quicksight_vpc_connection.libsonnet b/4.x/_gen/resources/quicksight_vpc_connection.libsonnet new file mode 100644 index 00000000..5637f753 --- /dev/null +++ b/4.x/_gen/resources/quicksight_vpc_connection.libsonnet @@ -0,0 +1,168 @@ +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='quicksight_vpc_connection', url='', help='`quicksight_vpc_connection` represents the `aws_quicksight_vpc_connection` 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.quicksight_vpc_connection.new` injects a new `aws_quicksight_vpc_connection` 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.quicksight_vpc_connection.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.quicksight_vpc_connection` using the reference:\n\n $._ref.aws_quicksight_vpc_connection.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_quicksight_vpc_connection.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `dns_resolvers` (`list`): Set the `dns_resolvers` field on the resulting resource block. When `null`, the `dns_resolvers` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting resource block.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block.\n - `security_group_ids` (`list`): Set the `security_group_ids` field on the resulting resource block.\n - `subnet_ids` (`list`): Set the `subnet_ids` field on the resulting resource block.\n - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object.\n - `vpc_connection_id` (`string`): Set the `vpc_connection_id` field on the resulting resource block.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_vpc_connection.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + new( + resourceLabel, + name, + role_arn, + security_group_ids, + subnet_ids, + vpc_connection_id, + aws_account_id=null, + dns_resolvers=null, + tags=null, + timeouts=null, + _meta={} + ):: tf.withResource( + type='aws_quicksight_vpc_connection', + label=resourceLabel, + attrs=self.newAttrs( + aws_account_id=aws_account_id, + dns_resolvers=dns_resolvers, + name=name, + role_arn=role_arn, + security_group_ids=security_group_ids, + subnet_ids=subnet_ids, + tags=tags, + timeouts=timeouts, + vpc_connection_id=vpc_connection_id + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.quicksight_vpc_connection.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_vpc_connection`\nTerraform resource.\n\nUnlike [aws.quicksight_vpc_connection.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 - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object.\n - `dns_resolvers` (`list`): Set the `dns_resolvers` field on the resulting object. When `null`, the `dns_resolvers` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object.\n - `security_group_ids` (`list`): Set the `security_group_ids` field on the resulting object.\n - `subnet_ids` (`list`): Set the `subnet_ids` field on the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `vpc_connection_id` (`string`): Set the `vpc_connection_id` field on the resulting object.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_vpc_connection.timeouts.new](#fn-timeoutsnew) constructor.\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 `quicksight_vpc_connection` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + name, + role_arn, + security_group_ids, + subnet_ids, + vpc_connection_id, + aws_account_id=null, + dns_resolvers=null, + tags=null, + timeouts=null + ):: std.prune(a={ + aws_account_id: aws_account_id, + dns_resolvers: dns_resolvers, + name: name, + role_arn: role_arn, + security_group_ids: security_group_ids, + subnet_ids: subnet_ids, + tags: tags, + timeouts: timeouts, + vpc_connection_id: vpc_connection_id, + }), + timeouts:: { + '#new':: d.fn(help='\n`aws.quicksight_vpc_connection.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts`\nTerraform sub block.\n\n\n\n**Args**:\n - `create` (`string`): Set the `create` field on the resulting object. When `null`, the `create` field will be omitted from the resulting object.\n - `delete` (`string`): Set the `delete` field on the resulting object. When `null`, the `delete` field will be omitted from the resulting object.\n - `update` (`string`): Set the `update` field on the resulting object. When `null`, the `update` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `timeouts` sub block.\n', args=[]), + new( + create=null, + delete=null, + update=null + ):: std.prune(a={ + create: create, + delete: delete, + update: update, + }), + }, + '#withAwsAccountId':: d.fn(help='`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the aws_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 `aws_account_id` field.\n', args=[]), + withAwsAccountId(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + aws_account_id: value, + }, + }, + }, + }, + '#withDnsResolvers':: d.fn(help='`aws.list.withDnsResolvers` constructs a mixin object that can be merged into the `list`\nTerraform resource block to set or update the dns_resolvers field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list`): The value to set for the `dns_resolvers` field.\n', args=[]), + withDnsResolvers(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + dns_resolvers: value, + }, + }, + }, + }, + '#withName':: d.fn(help='`aws.string.withName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the name 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 `name` field.\n', args=[]), + withName(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + name: 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_quicksight_vpc_connection+: { + [resourceLabel]+: { + role_arn: value, + }, + }, + }, + }, + '#withSecurityGroupIds':: d.fn(help='`aws.list.withSecurityGroupIds` constructs a mixin object that can be merged into the `list`\nTerraform resource block to set or update the security_group_ids field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list`): The value to set for the `security_group_ids` field.\n', args=[]), + withSecurityGroupIds(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + security_group_ids: value, + }, + }, + }, + }, + '#withSubnetIds':: d.fn(help='`aws.list.withSubnetIds` constructs a mixin object that can be merged into the `list`\nTerraform resource block to set or update the subnet_ids field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`list`): The value to set for the `subnet_ids` field.\n', args=[]), + withSubnetIds(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + subnet_ids: value, + }, + }, + }, + }, + '#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the tags field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]), + withTags(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + tags: value, + }, + }, + }, + }, + '#withTimeouts':: d.fn(help='`aws.obj.withTimeouts` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will replace the map with the passed in `value`. If you wish to instead merge the\npassed in value to the existing map, use the [aws.obj.withTimeoutsMixin](TODO) function.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]), + withTimeouts(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + timeouts: value, + }, + }, + }, + }, + '#withTimeoutsMixin':: d.fn(help='`aws.obj.withTimeoutsMixin` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will merge the passed in value to the existing map. If you wish\nto instead replace the entire map with the passed in `value`, use the [aws.obj.withTimeouts](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]), + withTimeoutsMixin(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + timeouts+: value, + }, + }, + }, + }, + '#withVpcConnectionId':: d.fn(help='`aws.string.withVpcConnectionId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the vpc_connection_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 `vpc_connection_id` field.\n', args=[]), + withVpcConnectionId(resourceLabel, value): { + resource+: { + aws_quicksight_vpc_connection+: { + [resourceLabel]+: { + vpc_connection_id: value, + }, + }, + }, + }, +} diff --git a/docs/4.x/README.md b/docs/4.x/README.md index c79471a2..1cecc160 100644 --- a/docs/4.x/README.md +++ b/docs/4.x/README.md @@ -853,7 +853,10 @@ project. * [quicksight_ingestion](quicksight_ingestion.md) * [quicksight_namespace](quicksight_namespace.md) * [quicksight_refresh_schedule](quicksight_refresh_schedule.md) +* [quicksight_template](quicksight_template.md) +* [quicksight_template_alias](quicksight_template_alias.md) * [quicksight_user](quicksight_user.md) +* [quicksight_vpc_connection](quicksight_vpc_connection.md) * [ram_principal_association](ram_principal_association.md) * [ram_resource_association](ram_resource_association.md) * [ram_resource_share](ram_resource_share.md) diff --git a/docs/4.x/acmpca_certificate_authority.md b/docs/4.x/acmpca_certificate_authority.md index a5b81dfb..d09bc0cd 100644 --- a/docs/4.x/acmpca_certificate_authority.md +++ b/docs/4.x/acmpca_certificate_authority.md @@ -18,6 +18,7 @@ This package contains functions and utilities for setting up the resource using * [`fn withCertificateAuthorityConfiguration()`](#fn-withcertificateauthorityconfiguration) * [`fn withCertificateAuthorityConfigurationMixin()`](#fn-withcertificateauthorityconfigurationmixin) * [`fn withEnabled()`](#fn-withenabled) +* [`fn withKeyStorageSecurityStandard()`](#fn-withkeystoragesecuritystandard) * [`fn withPermanentDeletionTimeInDays()`](#fn-withpermanentdeletiontimeindays) * [`fn withRevocationConfiguration()`](#fn-withrevocationconfiguration) * [`fn withRevocationConfigurationMixin()`](#fn-withrevocationconfigurationmixin) @@ -70,6 +71,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using **Args**: - `resourceLabel` (`string`): The name label of the block. - `enabled` (`bool`): Set the `enabled` field on the resulting resource block. When `null`, the `enabled` field will be omitted from the resulting object. + - `key_storage_security_standard` (`string`): Set the `key_storage_security_standard` field on the resulting resource block. When `null`, the `key_storage_security_standard` field will be omitted from the resulting object. - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting resource block. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object. - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object. - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object. @@ -102,6 +104,7 @@ injecting into a complete block. **Args**: - `enabled` (`bool`): Set the `enabled` field on the resulting object. When `null`, the `enabled` field will be omitted from the resulting object. + - `key_storage_security_standard` (`string`): Set the `key_storage_security_standard` field on the resulting object. When `null`, the `key_storage_security_standard` field will be omitted from the resulting object. - `permanent_deletion_time_in_days` (`number`): Set the `permanent_deletion_time_in_days` field on the resulting object. When `null`, the `permanent_deletion_time_in_days` field will be omitted from the resulting object. - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object. - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object. @@ -168,6 +171,22 @@ Terraform resource block to set or update the enabled field. - `value` (`bool`): The value to set for the `enabled` field. +### fn withKeyStorageSecurityStandard + +```ts +withKeyStorageSecurityStandard() +``` + +`aws.string.withKeyStorageSecurityStandard` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the key_storage_security_standard field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `key_storage_security_standard` field. + + ### fn withPermanentDeletionTimeInDays ```ts diff --git a/docs/4.x/cloudwatch_metric_stream.md b/docs/4.x/cloudwatch_metric_stream.md index 1d1e25ed..47c098d3 100644 --- a/docs/4.x/cloudwatch_metric_stream.md +++ b/docs/4.x/cloudwatch_metric_stream.md @@ -415,6 +415,7 @@ Terraform sub block. **Args**: + - `metric_names` (`list`): Set the `metric_names` field on the resulting object. When `null`, the `metric_names` field will be omitted from the resulting object. - `namespace` (`string`): Set the `namespace` field on the resulting object. **Returns**: @@ -438,6 +439,7 @@ Terraform sub block. **Args**: + - `metric_names` (`list`): Set the `metric_names` field on the resulting object. When `null`, the `metric_names` field will be omitted from the resulting object. - `namespace` (`string`): Set the `namespace` field on the resulting object. **Returns**: diff --git a/docs/4.x/data/connect_user.md b/docs/4.x/data/connect_user.md new file mode 100644 index 00000000..fff82801 --- /dev/null +++ b/docs/4.x/data/connect_user.md @@ -0,0 +1,149 @@ +--- +permalink: /data/connect_user/ +--- + +# data.connect_user + +`connect_user` represents the `aws_connect_user` 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 withInstanceId()`](#fn-withinstanceid) +* [`fn withName()`](#fn-withname) +* [`fn withTags()`](#fn-withtags) +* [`fn withUserId()`](#fn-withuserid) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.connect_user.new` injects a new `data_aws_connect_user` 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.connect_user.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.connect_user` using the reference: + + $._ref.data_aws_connect_user.some_id.get('id') + +This is the same as directly entering `"${ data_aws_connect_user.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. + - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block. + - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object. + - `user_id` (`string`): Set the `user_id` field on the resulting data source block. When `null`, the `user_id` field will be omitted from the resulting object. + +**Returns**: +- A mixin object that injects the new data source into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.data.connect_user.newAttrs` constructs a new object with attributes and blocks configured for the `connect_user` +Terraform data source. + +Unlike [aws.data.connect_user.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**: + - `instance_id` (`string`): Set the `instance_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object. + - `user_id` (`string`): Set the `user_id` field on the resulting object. When `null`, the `user_id` field will be omitted from the resulting object. + +**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 `connect_user` data source into the root Terraform configuration. + + +### fn withInstanceId + +```ts +withInstanceId() +``` + +`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the instance_id field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `instance_id` 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. + + +### fn withTags + +```ts +withTags() +``` + +`aws.obj.withTags` constructs a mixin object that can be merged into the `obj` +Terraform data source block to set or update the tags field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags` field. + + +### fn withUserId + +```ts +withUserId() +``` + +`aws.string.withUserId` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the user_id field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `user_id` field. diff --git a/docs/4.x/data/connect_vocabulary.md b/docs/4.x/data/connect_vocabulary.md new file mode 100644 index 00000000..61bf7785 --- /dev/null +++ b/docs/4.x/data/connect_vocabulary.md @@ -0,0 +1,149 @@ +--- +permalink: /data/connect_vocabulary/ +--- + +# data.connect_vocabulary + +`connect_vocabulary` represents the `aws_connect_vocabulary` 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 withInstanceId()`](#fn-withinstanceid) +* [`fn withName()`](#fn-withname) +* [`fn withTags()`](#fn-withtags) +* [`fn withVocabularyId()`](#fn-withvocabularyid) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.connect_vocabulary.new` injects a new `data_aws_connect_vocabulary` 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.connect_vocabulary.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.connect_vocabulary` using the reference: + + $._ref.data_aws_connect_vocabulary.some_id.get('id') + +This is the same as directly entering `"${ data_aws_connect_vocabulary.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. + - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block. + - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object. + - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting data source block. When `null`, the `vocabulary_id` field will be omitted from the resulting object. + +**Returns**: +- A mixin object that injects the new data source into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.data.connect_vocabulary.newAttrs` constructs a new object with attributes and blocks configured for the `connect_vocabulary` +Terraform data source. + +Unlike [aws.data.connect_vocabulary.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**: + - `instance_id` (`string`): Set the `instance_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object. + - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting object. When `null`, the `vocabulary_id` field will be omitted from the resulting object. + +**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 `connect_vocabulary` data source into the root Terraform configuration. + + +### fn withInstanceId + +```ts +withInstanceId() +``` + +`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the instance_id field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `instance_id` 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. + + +### fn withTags + +```ts +withTags() +``` + +`aws.obj.withTags` constructs a mixin object that can be merged into the `obj` +Terraform data source block to set or update the tags field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags` field. + + +### fn withVocabularyId + +```ts +withVocabularyId() +``` + +`aws.string.withVocabularyId` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the vocabulary_id field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `vocabulary_id` field. diff --git a/docs/4.x/data/index.md b/docs/4.x/data/index.md index 9ad7575b..af4f36fc 100644 --- a/docs/4.x/data/index.md +++ b/docs/4.x/data/index.md @@ -100,8 +100,10 @@ permalink: /data/ * [connect_quick_connect](connect_quick_connect.md) * [connect_routing_profile](connect_routing_profile.md) * [connect_security_profile](connect_security_profile.md) +* [connect_user](connect_user.md) * [connect_user_hierarchy_group](connect_user_hierarchy_group.md) * [connect_user_hierarchy_structure](connect_user_hierarchy_structure.md) +* [connect_vocabulary](connect_vocabulary.md) * [controltower_controls](controltower_controls.md) * [cur_report_definition](cur_report_definition.md) * [customer_gateway](customer_gateway.md) @@ -351,6 +353,7 @@ permalink: /data/ * [organizations_organizational_unit_child_accounts](organizations_organizational_unit_child_accounts.md) * [organizations_organizational_unit_descendant_accounts](organizations_organizational_unit_descendant_accounts.md) * [organizations_organizational_units](organizations_organizational_units.md) +* [organizations_policy](organizations_policy.md) * [organizations_resource_tags](organizations_resource_tags.md) * [outposts_asset](outposts_asset.md) * [outposts_assets](outposts_assets.md) @@ -382,6 +385,7 @@ permalink: /data/ * [redshift_service_account](redshift_service_account.md) * [redshift_subnet_group](redshift_subnet_group.md) * [redshiftserverless_credentials](redshiftserverless_credentials.md) +* [redshiftserverless_namespace](redshiftserverless_namespace.md) * [redshiftserverless_workgroup](redshiftserverless_workgroup.md) * [region](region.md) * [regions](regions.md) diff --git a/docs/4.x/data/organizations_policy.md b/docs/4.x/data/organizations_policy.md new file mode 100644 index 00000000..e7429959 --- /dev/null +++ b/docs/4.x/data/organizations_policy.md @@ -0,0 +1,92 @@ +--- +permalink: /data/organizations_policy/ +--- + +# data.organizations_policy + +`organizations_policy` represents the `aws_organizations_policy` 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 withPolicyId()`](#fn-withpolicyid) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.organizations_policy.new` injects a new `data_aws_organizations_policy` 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.organizations_policy.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.organizations_policy` using the reference: + + $._ref.data_aws_organizations_policy.some_id.get('id') + +This is the same as directly entering `"${ data_aws_organizations_policy.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. + - `policy_id` (`string`): Set the `policy_id` field on the resulting data source block. + +**Returns**: +- A mixin object that injects the new data source into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.data.organizations_policy.newAttrs` constructs a new object with attributes and blocks configured for the `organizations_policy` +Terraform data source. + +Unlike [aws.data.organizations_policy.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**: + - `policy_id` (`string`): Set the `policy_id` field on the resulting object. + +**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 `organizations_policy` data source into the root Terraform configuration. + + +### fn withPolicyId + +```ts +withPolicyId() +``` + +`aws.string.withPolicyId` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the policy_id field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `policy_id` field. diff --git a/docs/4.x/data/redshiftserverless_namespace.md b/docs/4.x/data/redshiftserverless_namespace.md new file mode 100644 index 00000000..a4b0041a --- /dev/null +++ b/docs/4.x/data/redshiftserverless_namespace.md @@ -0,0 +1,92 @@ +--- +permalink: /data/redshiftserverless_namespace/ +--- + +# data.redshiftserverless_namespace + +`redshiftserverless_namespace` represents the `aws_redshiftserverless_namespace` 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 withNamespaceName()`](#fn-withnamespacename) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.redshiftserverless_namespace.new` injects a new `data_aws_redshiftserverless_namespace` 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.redshiftserverless_namespace.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.redshiftserverless_namespace` using the reference: + + $._ref.data_aws_redshiftserverless_namespace.some_id.get('id') + +This is the same as directly entering `"${ data_aws_redshiftserverless_namespace.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. + - `namespace_name` (`string`): Set the `namespace_name` field on the resulting data source block. + +**Returns**: +- A mixin object that injects the new data source into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.data.redshiftserverless_namespace.newAttrs` constructs a new object with attributes and blocks configured for the `redshiftserverless_namespace` +Terraform data source. + +Unlike [aws.data.redshiftserverless_namespace.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**: + - `namespace_name` (`string`): Set the `namespace_name` field on the resulting object. + +**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 `redshiftserverless_namespace` data source into the root Terraform configuration. + + +### fn withNamespaceName + +```ts +withNamespaceName() +``` + +`aws.string.withNamespaceName` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the namespace_name field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `namespace_name` field. diff --git a/docs/4.x/quicksight_data_set.md b/docs/4.x/quicksight_data_set.md index 5c9094fb..9d9bc48d 100644 --- a/docs/4.x/quicksight_data_set.md +++ b/docs/4.x/quicksight_data_set.md @@ -33,6 +33,8 @@ This package contains functions and utilities for setting up the resource using * [`fn withPermissionsMixin()`](#fn-withpermissionsmixin) * [`fn withPhysicalTableMap()`](#fn-withphysicaltablemap) * [`fn withPhysicalTableMapMixin()`](#fn-withphysicaltablemapmixin) +* [`fn withRefreshProperties()`](#fn-withrefreshproperties) +* [`fn withRefreshPropertiesMixin()`](#fn-withrefreshpropertiesmixin) * [`fn withRowLevelPermissionDataSet()`](#fn-withrowlevelpermissiondataset) * [`fn withRowLevelPermissionDataSetMixin()`](#fn-withrowlevelpermissiondatasetmixin) * [`fn withRowLevelPermissionTagConfiguration()`](#fn-withrowlevelpermissiontagconfiguration) @@ -99,6 +101,14 @@ This package contains functions and utilities for setting up the resource using * [`fn new()`](#fn-physical_table_maps3_sourceinput_columnsnew) * [`obj physical_table_map.s3_source.upload_settings`](#obj-physical_table_maps3_sourceupload_settings) * [`fn new()`](#fn-physical_table_maps3_sourceupload_settingsnew) +* [`obj refresh_properties`](#obj-refresh_properties) + * [`fn new()`](#fn-refresh_propertiesnew) + * [`obj refresh_properties.refresh_configuration`](#obj-refresh_propertiesrefresh_configuration) + * [`fn new()`](#fn-refresh_propertiesrefresh_configurationnew) + * [`obj refresh_properties.refresh_configuration.incremental_refresh`](#obj-refresh_propertiesrefresh_configurationincremental_refresh) + * [`fn new()`](#fn-refresh_propertiesrefresh_configurationincremental_refreshnew) + * [`obj refresh_properties.refresh_configuration.incremental_refresh.lookback_window`](#obj-refresh_propertiesrefresh_configurationincremental_refreshlookback_window) + * [`fn new()`](#fn-refresh_propertiesrefresh_configurationincremental_refreshlookback_windownew) * [`obj row_level_permission_data_set`](#obj-row_level_permission_data_set) * [`fn new()`](#fn-row_level_permission_data_setnew) * [`obj row_level_permission_tag_configuration`](#obj-row_level_permission_tag_configuration) @@ -148,6 +158,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting resource block. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor. - `permissions` (`list[obj]`): Set the `permissions` field on the resulting resource block. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor. - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting resource block. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor. + - `refresh_properties` (`list[obj]`): Set the `refresh_properties` field on the resulting resource block. When `null`, the `refresh_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.new](#fn-refresh_propertiesnew) constructor. - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting resource block. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor. - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting resource block. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor. @@ -186,6 +197,7 @@ injecting into a complete block. - `logical_table_map` (`list[obj]`): Set the `logical_table_map` field on the resulting object. When `null`, the `logical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.logical_table_map.new](#fn-logical_table_mapnew) constructor. - `permissions` (`list[obj]`): Set the `permissions` field on the resulting object. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.permissions.new](#fn-permissionsnew) constructor. - `physical_table_map` (`list[obj]`): Set the `physical_table_map` field on the resulting object. When `null`, the `physical_table_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.physical_table_map.new](#fn-physical_table_mapnew) constructor. + - `refresh_properties` (`list[obj]`): Set the `refresh_properties` field on the resulting object. When `null`, the `refresh_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.new](#fn-refresh_propertiesnew) constructor. - `row_level_permission_data_set` (`list[obj]`): Set the `row_level_permission_data_set` field on the resulting object. When `null`, the `row_level_permission_data_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_data_set.new](#fn-row_level_permission_data_setnew) constructor. - `row_level_permission_tag_configuration` (`list[obj]`): Set the `row_level_permission_tag_configuration` field on the resulting object. When `null`, the `row_level_permission_tag_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.row_level_permission_tag_configuration.new](#fn-row_level_permission_tag_configurationnew) constructor. @@ -516,6 +528,43 @@ function. - `value` (`list[obj]`): The value to set for the `physical_table_map` field. +### fn withRefreshProperties + +```ts +withRefreshProperties() +``` + +`aws.list[obj].withRefreshProperties` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the refresh_properties 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].withRefreshPropertiesMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `refresh_properties` field. + + +### fn withRefreshPropertiesMixin + +```ts +withRefreshPropertiesMixin() +``` + +`aws.list[obj].withRefreshPropertiesMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the refresh_properties 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].withRefreshProperties](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `refresh_properties` field. + + ### fn withRowLevelPermissionDataSet ```ts @@ -1362,6 +1411,100 @@ Terraform sub block. - An attribute object that represents the `upload_settings` sub block. +## obj refresh_properties + + + +### fn refresh_properties.new + +```ts +new() +``` + + +`aws.quicksight_data_set.refresh_properties.new` constructs a new object with attributes and blocks configured for the `refresh_properties` +Terraform sub block. + + + +**Args**: + - `refresh_configuration` (`list[obj]`): Set the `refresh_configuration` field on the resulting object. When `null`, the `refresh_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.new](#fn-refresh_propertiesrefresh_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `refresh_properties` sub block. + + +## obj refresh_properties.refresh_configuration + + + +### fn refresh_properties.refresh_configuration.new + +```ts +new() +``` + + +`aws.quicksight_data_set.refresh_properties.refresh_configuration.new` constructs a new object with attributes and blocks configured for the `refresh_configuration` +Terraform sub block. + + + +**Args**: + - `incremental_refresh` (`list[obj]`): Set the `incremental_refresh` field on the resulting object. When `null`, the `incremental_refresh` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.new](#fn-refresh_propertiesrefresh_propertiesincremental_refreshnew) constructor. + +**Returns**: + - An attribute object that represents the `refresh_configuration` sub block. + + +## obj refresh_properties.refresh_configuration.incremental_refresh + + + +### fn refresh_properties.refresh_configuration.incremental_refresh.new + +```ts +new() +``` + + +`aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.new` constructs a new object with attributes and blocks configured for the `incremental_refresh` +Terraform sub block. + + + +**Args**: + - `lookback_window` (`list[obj]`): Set the `lookback_window` field on the resulting object. When `null`, the `lookback_window` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.lookback_window.new](#fn-refresh_propertiesrefresh_propertiesrefresh_configurationlookback_windownew) constructor. + +**Returns**: + - An attribute object that represents the `incremental_refresh` sub block. + + +## obj refresh_properties.refresh_configuration.incremental_refresh.lookback_window + + + +### fn refresh_properties.refresh_configuration.incremental_refresh.lookback_window.new + +```ts +new() +``` + + +`aws.quicksight_data_set.refresh_properties.refresh_configuration.incremental_refresh.lookback_window.new` constructs a new object with attributes and blocks configured for the `lookback_window` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `size` (`number`): Set the `size` field on the resulting object. + - `size_unit` (`string`): Set the `size_unit` field on the resulting object. + +**Returns**: + - An attribute object that represents the `lookback_window` sub block. + + ## obj row_level_permission_data_set diff --git a/docs/4.x/quicksight_template.md b/docs/4.x/quicksight_template.md new file mode 100644 index 00000000..f812c519 --- /dev/null +++ b/docs/4.x/quicksight_template.md @@ -0,0 +1,227291 @@ +--- +permalink: /quicksight_template/ +--- + +# quicksight_template + +`quicksight_template` represents the `aws_quicksight_template` 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 withAwsAccountId()`](#fn-withawsaccountid) +* [`fn withDefinition()`](#fn-withdefinition) +* [`fn withDefinitionMixin()`](#fn-withdefinitionmixin) +* [`fn withName()`](#fn-withname) +* [`fn withPermissions()`](#fn-withpermissions) +* [`fn withPermissionsMixin()`](#fn-withpermissionsmixin) +* [`fn withSourceEntity()`](#fn-withsourceentity) +* [`fn withSourceEntityMixin()`](#fn-withsourceentitymixin) +* [`fn withTags()`](#fn-withtags) +* [`fn withTagsAll()`](#fn-withtagsall) +* [`fn withTemplateId()`](#fn-withtemplateid) +* [`fn withTimeouts()`](#fn-withtimeouts) +* [`fn withTimeoutsMixin()`](#fn-withtimeoutsmixin) +* [`fn withVersionDescription()`](#fn-withversiondescription) +* [`obj definition`](#obj-definition) + * [`fn new()`](#fn-definitionnew) + * [`obj definition.analysis_defaults`](#obj-definitionanalysis_defaults) + * [`fn new()`](#fn-definitionanalysis_defaultsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration`](#obj-definitionanalysis_defaultsdefault_new_sheet_configuration) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configuration) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_form) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formcanvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formcanvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formcanvas_size_optionsscreen_canvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formcanvas_size_optionsscreen_canvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgrid) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridcanvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridcanvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridcanvas_size_optionsscreen_canvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridcanvas_size_optionsscreen_canvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configuration) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_based) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basednew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_canvas_size_options) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_canvas_size_optionsnew) + * [`obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin`](#obj-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_canvas_size_optionspaper_margin) + * [`fn new()`](#fn-definitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_canvas_size_optionspaper_marginnew) + * [`obj definition.calculated_fields`](#obj-definitioncalculated_fields) + * [`fn new()`](#fn-definitioncalculated_fieldsnew) + * [`obj definition.column_configurations`](#obj-definitioncolumn_configurations) + * [`fn new()`](#fn-definitioncolumn_configurationsnew) + * [`obj definition.column_configurations.column`](#obj-definitioncolumn_configurationscolumn) + * [`fn new()`](#fn-definitioncolumn_configurationscolumnnew) + * [`obj definition.column_configurations.format_configuration`](#obj-definitioncolumn_configurationsformat_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.data_set_configuration`](#obj-definitiondata_set_configuration) + * [`fn new()`](#fn-definitiondata_set_configurationnew) + * [`obj definition.data_set_configuration.column_group_schema_list`](#obj-definitiondata_set_configurationcolumn_group_schema_list) + * [`fn new()`](#fn-definitiondata_set_configurationcolumn_group_schema_listnew) + * [`obj definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list`](#obj-definitiondata_set_configurationcolumn_group_schema_listcolumn_group_column_schema_list) + * [`fn new()`](#fn-definitiondata_set_configurationcolumn_group_schema_listcolumn_group_column_schema_listnew) + * [`obj definition.data_set_configuration.data_set_schema`](#obj-definitiondata_set_configurationdata_set_schema) + * [`fn new()`](#fn-definitiondata_set_configurationdata_set_schemanew) + * [`obj definition.data_set_configuration.data_set_schema.column_schema_list`](#obj-definitiondata_set_configurationdata_set_schemacolumn_schema_list) + * [`fn new()`](#fn-definitiondata_set_configurationdata_set_schemacolumn_schema_listnew) + * [`obj definition.filter_groups`](#obj-definitionfilter_groups) + * [`fn new()`](#fn-definitionfilter_groupsnew) + * [`obj definition.filter_groups.filters`](#obj-definitionfilter_groupsfilters) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnew) + * [`obj definition.filter_groups.filters.category_filter`](#obj-definitionfilter_groupsfilterscategory_filter) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filternew) + * [`obj definition.filter_groups.filters.category_filter.column`](#obj-definitionfilter_groupsfilterscategory_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filtercolumnnew) + * [`obj definition.filter_groups.filters.category_filter.configuration`](#obj-definitionfilter_groupsfilterscategory_filterconfiguration) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filterconfigurationnew) + * [`obj definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration`](#obj-definitionfilter_groupsfilterscategory_filterconfigurationcustom_filter_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filterconfigurationcustom_filter_configurationnew) + * [`obj definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration`](#obj-definitionfilter_groupsfilterscategory_filterconfigurationcustom_filter_list_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filterconfigurationcustom_filter_list_configurationnew) + * [`obj definition.filter_groups.filters.category_filter.configuration.filter_list_configuration`](#obj-definitionfilter_groupsfilterscategory_filterconfigurationfilter_list_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfilterscategory_filterconfigurationfilter_list_configurationnew) + * [`obj definition.filter_groups.filters.numeric_equality_filter`](#obj-definitionfilter_groupsfiltersnumeric_equality_filter) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_equality_filternew) + * [`obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function`](#obj-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionnew) + * [`obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function`](#obj-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.filter_groups.filters.numeric_equality_filter.column`](#obj-definitionfilter_groupsfiltersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_equality_filtercolumnnew) + * [`obj definition.filter_groups.filters.numeric_range_filter`](#obj-definitionfilter_groupsfiltersnumeric_range_filter) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filternew) + * [`obj definition.filter_groups.filters.numeric_range_filter.aggregation_function`](#obj-definitionfilter_groupsfiltersnumeric_range_filteraggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filteraggregation_functionnew) + * [`obj definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function`](#obj-definitionfilter_groupsfiltersnumeric_range_filteraggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filteraggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionfilter_groupsfiltersnumeric_range_filteraggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filteraggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.filter_groups.filters.numeric_range_filter.column`](#obj-definitionfilter_groupsfiltersnumeric_range_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filtercolumnnew) + * [`obj definition.filter_groups.filters.numeric_range_filter.range_maximum`](#obj-definitionfilter_groupsfiltersnumeric_range_filterrange_maximum) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filterrange_maximumnew) + * [`obj definition.filter_groups.filters.numeric_range_filter.range_minimum`](#obj-definitionfilter_groupsfiltersnumeric_range_filterrange_minimum) + * [`fn new()`](#fn-definitionfilter_groupsfiltersnumeric_range_filterrange_minimumnew) + * [`obj definition.filter_groups.filters.relative_dates_filter`](#obj-definitionfilter_groupsfiltersrelative_dates_filter) + * [`fn new()`](#fn-definitionfilter_groupsfiltersrelative_dates_filternew) + * [`obj definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration`](#obj-definitionfilter_groupsfiltersrelative_dates_filteranchor_date_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfiltersrelative_dates_filteranchor_date_configurationnew) + * [`obj definition.filter_groups.filters.relative_dates_filter.column`](#obj-definitionfilter_groupsfiltersrelative_dates_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfiltersrelative_dates_filtercolumnnew) + * [`obj definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration`](#obj-definitionfilter_groupsfiltersrelative_dates_filterexclude_period_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfiltersrelative_dates_filterexclude_period_configurationnew) + * [`obj definition.filter_groups.filters.time_equality_filter`](#obj-definitionfilter_groupsfilterstime_equality_filter) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_equality_filternew) + * [`obj definition.filter_groups.filters.time_equality_filter.column`](#obj-definitionfilter_groupsfilterstime_equality_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_equality_filtercolumnnew) + * [`obj definition.filter_groups.filters.time_range_filter`](#obj-definitionfilter_groupsfilterstime_range_filter) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filternew) + * [`obj definition.filter_groups.filters.time_range_filter.column`](#obj-definitionfilter_groupsfilterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filtercolumnnew) + * [`obj definition.filter_groups.filters.time_range_filter.exclude_period_configuration`](#obj-definitionfilter_groupsfilterstime_range_filterexclude_period_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filterexclude_period_configurationnew) + * [`obj definition.filter_groups.filters.time_range_filter.range_maximum_value`](#obj-definitionfilter_groupsfilterstime_range_filterrange_maximum_value) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filterrange_maximum_valuenew) + * [`obj definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date`](#obj-definitionfilter_groupsfilterstime_range_filterrange_maximum_valuerolling_date) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filterrange_maximum_valuerolling_datenew) + * [`obj definition.filter_groups.filters.time_range_filter.range_minimum_value`](#obj-definitionfilter_groupsfilterstime_range_filterrange_minimum_value) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filterrange_minimum_valuenew) + * [`obj definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date`](#obj-definitionfilter_groupsfilterstime_range_filterrange_minimum_valuerolling_date) + * [`fn new()`](#fn-definitionfilter_groupsfilterstime_range_filterrange_minimum_valuerolling_datenew) + * [`obj definition.filter_groups.filters.top_bottom_filter`](#obj-definitionfilter_groupsfilterstop_bottom_filter) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filternew) + * [`obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration`](#obj-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configuration) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationnew) + * [`obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function`](#obj-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionnew) + * [`obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function`](#obj-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column`](#obj-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationcolumn) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationcolumnnew) + * [`obj definition.filter_groups.filters.top_bottom_filter.column`](#obj-definitionfilter_groupsfilterstop_bottom_filtercolumn) + * [`fn new()`](#fn-definitionfilter_groupsfilterstop_bottom_filtercolumnnew) + * [`obj definition.filter_groups.scope_configuration`](#obj-definitionfilter_groupsscope_configuration) + * [`fn new()`](#fn-definitionfilter_groupsscope_configurationnew) + * [`obj definition.filter_groups.scope_configuration.selected_sheets`](#obj-definitionfilter_groupsscope_configurationselected_sheets) + * [`fn new()`](#fn-definitionfilter_groupsscope_configurationselected_sheetsnew) + * [`obj definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations`](#obj-definitionfilter_groupsscope_configurationselected_sheetssheet_visual_scoping_configurations) + * [`fn new()`](#fn-definitionfilter_groupsscope_configurationselected_sheetssheet_visual_scoping_configurationsnew) + * [`obj definition.parameters_declarations`](#obj-definitionparameters_declarations) + * [`fn new()`](#fn-definitionparameters_declarationsnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration`](#obj-definitionparameters_declarationsdate_time_parameter_declaration) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_values) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_value) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valuenew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valuedefault_value_column) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valuedefault_value_columnnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valuegroup_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valuegroup_name_columnnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valueuser_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdynamic_valueuser_name_columnnew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date`](#obj-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesrolling_date) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationdefault_valuesrolling_datenew) + * [`obj definition.parameters_declarations.date_time_parameter_declaration.values_when_unset`](#obj-definitionparameters_declarationsdate_time_parameter_declarationvalues_when_unset) + * [`fn new()`](#fn-definitionparameters_declarationsdate_time_parameter_declarationvalues_when_unsetnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration`](#obj-definitionparameters_declarationsdecimal_parameter_declaration) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.default_values`](#obj-definitionparameters_declarationsdecimal_parameter_declarationdefault_values) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value`](#obj-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_value) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valuenew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column`](#obj-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valuedefault_value_column) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valuedefault_value_columnnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column`](#obj-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valuegroup_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valuegroup_name_columnnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column`](#obj-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valueuser_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdynamic_valueuser_name_columnnew) + * [`obj definition.parameters_declarations.decimal_parameter_declaration.values_when_unset`](#obj-definitionparameters_declarationsdecimal_parameter_declarationvalues_when_unset) + * [`fn new()`](#fn-definitionparameters_declarationsdecimal_parameter_declarationvalues_when_unsetnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration`](#obj-definitionparameters_declarationsinteger_parameter_declaration) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.default_values`](#obj-definitionparameters_declarationsinteger_parameter_declarationdefault_values) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value`](#obj-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_value) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valuenew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column`](#obj-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valuedefault_value_column) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valuedefault_value_columnnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column`](#obj-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valuegroup_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valuegroup_name_columnnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column`](#obj-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valueuser_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationdefault_valuesdynamic_valueuser_name_columnnew) + * [`obj definition.parameters_declarations.integer_parameter_declaration.values_when_unset`](#obj-definitionparameters_declarationsinteger_parameter_declarationvalues_when_unset) + * [`fn new()`](#fn-definitionparameters_declarationsinteger_parameter_declarationvalues_when_unsetnew) + * [`obj definition.parameters_declarations.string_parameter_declaration`](#obj-definitionparameters_declarationsstring_parameter_declaration) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationnew) + * [`obj definition.parameters_declarations.string_parameter_declaration.default_values`](#obj-definitionparameters_declarationsstring_parameter_declarationdefault_values) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationdefault_valuesnew) + * [`obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value`](#obj-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_value) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valuenew) + * [`obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column`](#obj-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valuedefault_value_column) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valuedefault_value_columnnew) + * [`obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column`](#obj-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valuegroup_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valuegroup_name_columnnew) + * [`obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column`](#obj-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valueuser_name_column) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationdefault_valuesdynamic_valueuser_name_columnnew) + * [`obj definition.parameters_declarations.string_parameter_declaration.values_when_unset`](#obj-definitionparameters_declarationsstring_parameter_declarationvalues_when_unset) + * [`fn new()`](#fn-definitionparameters_declarationsstring_parameter_declarationvalues_when_unsetnew) + * [`obj definition.sheets`](#obj-definitionsheets) + * [`fn new()`](#fn-definitionsheetsnew) + * [`obj definition.sheets.filter_controls`](#obj-definitionsheetsfilter_controls) + * [`fn new()`](#fn-definitionsheetsfilter_controlsnew) + * [`obj definition.sheets.filter_controls.date_time_picker`](#obj-definitionsheetsfilter_controlsdate_time_picker) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickernew) + * [`obj definition.sheets.filter_controls.date_time_picker.display_options`](#obj-definitionsheetsfilter_controlsdate_time_pickerdisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionsnew) + * [`obj definition.sheets.filter_controls.date_time_picker.display_options.title_options`](#obj-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.dropdown`](#obj-definitionsheetsfilter_controlsdropdown) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdownnew) + * [`obj definition.sheets.filter_controls.dropdown.cascading_control_configuration`](#obj-definitionsheetsfilter_controlsdropdowncascading_control_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowncascading_control_configurationnew) + * [`obj definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls`](#obj-definitionsheetsfilter_controlsdropdowncascading_control_configurationsource_controls) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowncascading_control_configurationsource_controlsnew) + * [`obj definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match`](#obj-definitionsheetsfilter_controlsdropdowncascading_control_configurationsource_controlscolumn_to_match) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowncascading_control_configurationsource_controlscolumn_to_matchnew) + * [`obj definition.sheets.filter_controls.dropdown.display_options`](#obj-definitionsheetsfilter_controlsdropdowndisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionsnew) + * [`obj definition.sheets.filter_controls.dropdown.display_options.select_all_options`](#obj-definitionsheetsfilter_controlsdropdowndisplay_optionsselect_all_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionsselect_all_optionsnew) + * [`obj definition.sheets.filter_controls.dropdown.display_options.title_options`](#obj-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.dropdown.selectable_values`](#obj-definitionsheetsfilter_controlsdropdownselectable_values) + * [`fn new()`](#fn-definitionsheetsfilter_controlsdropdownselectable_valuesnew) + * [`obj definition.sheets.filter_controls.list`](#obj-definitionsheetsfilter_controlslist) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistnew) + * [`obj definition.sheets.filter_controls.list.cascading_control_configuration`](#obj-definitionsheetsfilter_controlslistcascading_control_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistcascading_control_configurationnew) + * [`obj definition.sheets.filter_controls.list.cascading_control_configuration.source_controls`](#obj-definitionsheetsfilter_controlslistcascading_control_configurationsource_controls) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistcascading_control_configurationsource_controlsnew) + * [`obj definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match`](#obj-definitionsheetsfilter_controlslistcascading_control_configurationsource_controlscolumn_to_match) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistcascading_control_configurationsource_controlscolumn_to_matchnew) + * [`obj definition.sheets.filter_controls.list.display_options`](#obj-definitionsheetsfilter_controlslistdisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionsnew) + * [`obj definition.sheets.filter_controls.list.display_options.search_options`](#obj-definitionsheetsfilter_controlslistdisplay_optionssearch_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionssearch_optionsnew) + * [`obj definition.sheets.filter_controls.list.display_options.select_all_options`](#obj-definitionsheetsfilter_controlslistdisplay_optionsselect_all_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionsselect_all_optionsnew) + * [`obj definition.sheets.filter_controls.list.display_options.title_options`](#obj-definitionsheetsfilter_controlslistdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.list.selectable_values`](#obj-definitionsheetsfilter_controlslistselectable_values) + * [`fn new()`](#fn-definitionsheetsfilter_controlslistselectable_valuesnew) + * [`obj definition.sheets.filter_controls.relative_date_time`](#obj-definitionsheetsfilter_controlsrelative_date_time) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timenew) + * [`obj definition.sheets.filter_controls.relative_date_time.display_options`](#obj-definitionsheetsfilter_controlsrelative_date_timedisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timedisplay_optionsnew) + * [`obj definition.sheets.filter_controls.relative_date_time.display_options.title_options`](#obj-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.slider`](#obj-definitionsheetsfilter_controlsslider) + * [`fn new()`](#fn-definitionsheetsfilter_controlsslidernew) + * [`obj definition.sheets.filter_controls.slider.display_options`](#obj-definitionsheetsfilter_controlssliderdisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlssliderdisplay_optionsnew) + * [`obj definition.sheets.filter_controls.slider.display_options.title_options`](#obj-definitionsheetsfilter_controlssliderdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.text_area`](#obj-definitionsheetsfilter_controlstext_area) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areanew) + * [`obj definition.sheets.filter_controls.text_area.display_options`](#obj-definitionsheetsfilter_controlstext_areadisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionsnew) + * [`obj definition.sheets.filter_controls.text_area.display_options.placeholder_options`](#obj-definitionsheetsfilter_controlstext_areadisplay_optionsplaceholder_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionsplaceholder_optionsnew) + * [`obj definition.sheets.filter_controls.text_area.display_options.title_options`](#obj-definitionsheetsfilter_controlstext_areadisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.filter_controls.text_field`](#obj-definitionsheetsfilter_controlstext_field) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fieldnew) + * [`obj definition.sheets.filter_controls.text_field.display_options`](#obj-definitionsheetsfilter_controlstext_fielddisplay_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionsnew) + * [`obj definition.sheets.filter_controls.text_field.display_options.placeholder_options`](#obj-definitionsheetsfilter_controlstext_fielddisplay_optionsplaceholder_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionsplaceholder_optionsnew) + * [`obj definition.sheets.filter_controls.text_field.display_options.title_options`](#obj-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsnew) + * [`obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration`](#obj-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.layouts`](#obj-definitionsheetslayouts) + * [`fn new()`](#fn-definitionsheetslayoutsnew) + * [`obj definition.sheets.layouts.configuration`](#obj-definitionsheetslayoutsconfiguration) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout`](#obj-definitionsheetslayoutsconfigurationfree_form_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.canvas_size_options`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutcanvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutcanvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutcanvas_size_optionsscreen_canvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutcanvas_size_optionsscreen_canvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelements) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.background_style`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsbackground_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsbackground_stylenew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.border_style`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsborder_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsborder_stylenew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsloading_animation) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsloading_animationnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsrendering_rules) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsrendering_rulesnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsrendering_rulesconfiguration_overrides) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsrendering_rulesconfiguration_overridesnew) + * [`obj definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style`](#obj-definitionsheetslayoutsconfigurationfree_form_layoutelementsselected_border_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationfree_form_layoutelementsselected_border_stylenew) + * [`obj definition.sheets.layouts.configuration.grid_layout`](#obj-definitionsheetslayoutsconfigurationgrid_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationgrid_layoutnew) + * [`obj definition.sheets.layouts.configuration.grid_layout.canvas_size_options`](#obj-definitionsheetslayoutsconfigurationgrid_layoutcanvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationgrid_layoutcanvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options`](#obj-definitionsheetslayoutsconfigurationgrid_layoutcanvas_size_optionsscreen_canvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationgrid_layoutcanvas_size_optionsscreen_canvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.grid_layout.elements`](#obj-definitionsheetslayoutsconfigurationgrid_layoutelements) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationgrid_layoutelementsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sections) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontent) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelements) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsbackground_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsbackground_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsborder_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsborder_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsloading_animation) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsloading_animationnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsrendering_rules) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsrendering_rulesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsrendering_rulesconfiguration_overrides) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsrendering_rulesconfiguration_overridesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsselected_border_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsselected_border_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspage_break_configuration) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspage_break_configurationnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspage_break_configurationafter) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspage_break_configurationafternew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsstyle) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsstylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsstylepadding) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsstylepaddingnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_canvas_size_options) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_canvas_size_optionsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_canvas_size_optionspaper_margin) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_canvas_size_optionspaper_marginnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sections) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelements) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsbackground_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsbackground_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsborder_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsborder_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsloading_animation) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsloading_animationnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsrendering_rules) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsrendering_rulesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsrendering_rulesconfiguration_overrides) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsrendering_rulesconfiguration_overridesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsselected_border_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsselected_border_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsstyle) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsstylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsstylepadding) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsstylepaddingnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sections) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layout) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelements) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsbackground_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsbackground_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsborder_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsborder_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsloading_animation) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsloading_animationnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsrendering_rules) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsrendering_rulesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsrendering_rulesconfiguration_overrides) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsrendering_rulesconfiguration_overridesnew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsselected_border_style) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsselected_border_stylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.style`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsstyle) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsstylenew) + * [`obj definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding`](#obj-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsstylepadding) + * [`fn new()`](#fn-definitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsstylepaddingnew) + * [`obj definition.sheets.parameter_controls`](#obj-definitionsheetsparameter_controls) + * [`fn new()`](#fn-definitionsheetsparameter_controlsnew) + * [`obj definition.sheets.parameter_controls.date_time_picker`](#obj-definitionsheetsparameter_controlsdate_time_picker) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickernew) + * [`obj definition.sheets.parameter_controls.date_time_picker.display_options`](#obj-definitionsheetsparameter_controlsdate_time_pickerdisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options`](#obj-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.parameter_controls.dropdown`](#obj-definitionsheetsparameter_controlsdropdown) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdownnew) + * [`obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration`](#obj-definitionsheetsparameter_controlsdropdowncascading_control_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowncascading_control_configurationnew) + * [`obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls`](#obj-definitionsheetsparameter_controlsdropdowncascading_control_configurationsource_controls) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowncascading_control_configurationsource_controlsnew) + * [`obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match`](#obj-definitionsheetsparameter_controlsdropdowncascading_control_configurationsource_controlscolumn_to_match) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowncascading_control_configurationsource_controlscolumn_to_matchnew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options`](#obj-definitionsheetsparameter_controlsdropdowndisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options.select_all_options`](#obj-definitionsheetsparameter_controlsdropdowndisplay_optionsselect_all_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionsselect_all_optionsnew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options.title_options`](#obj-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.parameter_controls.dropdown.selectable_values`](#obj-definitionsheetsparameter_controlsdropdownselectable_values) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdownselectable_valuesnew) + * [`obj definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column`](#obj-definitionsheetsparameter_controlsdropdownselectable_valueslink_to_data_set_column) + * [`fn new()`](#fn-definitionsheetsparameter_controlsdropdownselectable_valueslink_to_data_set_columnnew) + * [`obj definition.sheets.parameter_controls.list`](#obj-definitionsheetsparameter_controlslist) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistnew) + * [`obj definition.sheets.parameter_controls.list.cascading_control_configuration`](#obj-definitionsheetsparameter_controlslistcascading_control_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistcascading_control_configurationnew) + * [`obj definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls`](#obj-definitionsheetsparameter_controlslistcascading_control_configurationsource_controls) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistcascading_control_configurationsource_controlsnew) + * [`obj definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match`](#obj-definitionsheetsparameter_controlslistcascading_control_configurationsource_controlscolumn_to_match) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistcascading_control_configurationsource_controlscolumn_to_matchnew) + * [`obj definition.sheets.parameter_controls.list.display_options`](#obj-definitionsheetsparameter_controlslistdisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.list.display_options.search_options`](#obj-definitionsheetsparameter_controlslistdisplay_optionssearch_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionssearch_optionsnew) + * [`obj definition.sheets.parameter_controls.list.display_options.select_all_options`](#obj-definitionsheetsparameter_controlslistdisplay_optionsselect_all_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionsselect_all_optionsnew) + * [`obj definition.sheets.parameter_controls.list.display_options.title_options`](#obj-definitionsheetsparameter_controlslistdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.parameter_controls.list.selectable_values`](#obj-definitionsheetsparameter_controlslistselectable_values) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistselectable_valuesnew) + * [`obj definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column`](#obj-definitionsheetsparameter_controlslistselectable_valueslink_to_data_set_column) + * [`fn new()`](#fn-definitionsheetsparameter_controlslistselectable_valueslink_to_data_set_columnnew) + * [`obj definition.sheets.parameter_controls.slider`](#obj-definitionsheetsparameter_controlsslider) + * [`fn new()`](#fn-definitionsheetsparameter_controlsslidernew) + * [`obj definition.sheets.parameter_controls.slider.display_options`](#obj-definitionsheetsparameter_controlssliderdisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlssliderdisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.slider.display_options.title_options`](#obj-definitionsheetsparameter_controlssliderdisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.parameter_controls.text_area`](#obj-definitionsheetsparameter_controlstext_area) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areanew) + * [`obj definition.sheets.parameter_controls.text_area.display_options`](#obj-definitionsheetsparameter_controlstext_areadisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.text_area.display_options.placeholder_options`](#obj-definitionsheetsparameter_controlstext_areadisplay_optionsplaceholder_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionsplaceholder_optionsnew) + * [`obj definition.sheets.parameter_controls.text_area.display_options.title_options`](#obj-definitionsheetsparameter_controlstext_areadisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.parameter_controls.text_field`](#obj-definitionsheetsparameter_controlstext_field) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fieldnew) + * [`obj definition.sheets.parameter_controls.text_field.display_options`](#obj-definitionsheetsparameter_controlstext_fielddisplay_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionsnew) + * [`obj definition.sheets.parameter_controls.text_field.display_options.placeholder_options`](#obj-definitionsheetsparameter_controlstext_fielddisplay_optionsplaceholder_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionsplaceholder_optionsnew) + * [`obj definition.sheets.parameter_controls.text_field.display_options.title_options`](#obj-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_options) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsnew) + * [`obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration`](#obj-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configurationnew) + * [`obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size`](#obj-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight`](#obj-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.sheet_control_layouts`](#obj-definitionsheetssheet_control_layouts) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsnew) + * [`obj definition.sheets.sheet_control_layouts.configuration`](#obj-definitionsheetssheet_control_layoutsconfiguration) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsconfigurationnew) + * [`obj definition.sheets.sheet_control_layouts.configuration.grid_layout`](#obj-definitionsheetssheet_control_layoutsconfigurationgrid_layout) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsconfigurationgrid_layoutnew) + * [`obj definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options`](#obj-definitionsheetssheet_control_layoutsconfigurationgrid_layoutcanvas_size_options) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsconfigurationgrid_layoutcanvas_size_optionsnew) + * [`obj definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options`](#obj-definitionsheetssheet_control_layoutsconfigurationgrid_layoutcanvas_size_optionsscreen_canvas_size_options) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsconfigurationgrid_layoutcanvas_size_optionsscreen_canvas_size_optionsnew) + * [`obj definition.sheets.sheet_control_layouts.configuration.grid_layout.elements`](#obj-definitionsheetssheet_control_layoutsconfigurationgrid_layoutelements) + * [`fn new()`](#fn-definitionsheetssheet_control_layoutsconfigurationgrid_layoutelementsnew) + * [`obj definition.sheets.text_boxes`](#obj-definitionsheetstext_boxes) + * [`fn new()`](#fn-definitionsheetstext_boxesnew) + * [`obj definition.sheets.visuals`](#obj-definitionsheetsvisuals) + * [`fn new()`](#fn-definitionsheetsvisualsnew) + * [`obj definition.sheets.visuals.bar_chart_visual`](#obj-definitionsheetsvisualsbar_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions`](#obj-definitionsheetsvisualsbar_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsbar_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axis) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcontribution_analysis_defaults) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcontribution_analysis_defaultsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensions) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolors) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiples) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lines) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationstatic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationstatic_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesstyle_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationreference_linesstyle_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_items_limitnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortfield_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sortnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axis) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.bar_chart_visual.subtitle`](#obj-definitionsheetsvisualsbar_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.bar_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualsbar_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.bar_chart_visual.title`](#obj-definitionsheetsvisualsbar_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualtitlenew) + * [`obj definition.sheets.visuals.bar_chart_visual.title.format_text`](#obj-definitionsheetsvisualsbar_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsbar_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.box_plot_visual`](#obj-definitionsheetsvisualsbox_plot_visual) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions`](#obj-definitionsheetsvisualsbox_plot_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsbox_plot_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_optionsstyle_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_optionsstyle_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axis) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_by) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lines) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationstatic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationstatic_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationcustom_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationcustom_label_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesstyle_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationreference_linesstyle_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationpagination_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationpagination_configurationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.box_plot_visual.subtitle`](#obj-definitionsheetsvisualsbox_plot_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualsubtitlenew) + * [`obj definition.sheets.visuals.box_plot_visual.subtitle.format_text`](#obj-definitionsheetsvisualsbox_plot_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.box_plot_visual.title`](#obj-definitionsheetsvisualsbox_plot_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualtitlenew) + * [`obj definition.sheets.visuals.box_plot_visual.title.format_text`](#obj-definitionsheetsvisualsbox_plot_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsbox_plot_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.combo_chart_visual`](#obj-definitionsheetsvisualscombo_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions`](#obj-definitionsheetsvisualscombo_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualscombo_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labels) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axis) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_values) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolors) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_values) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labels) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lines) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationstatic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationstatic_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesstyle_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationreference_linesstyle_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_items_limitnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortfield_sortnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.combo_chart_visual.subtitle`](#obj-definitionsheetsvisualscombo_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.combo_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualscombo_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.combo_chart_visual.title`](#obj-definitionsheetsvisualscombo_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualtitlenew) + * [`obj definition.sheets.visuals.combo_chart_visual.title.format_text`](#obj-definitionsheetsvisualscombo_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualscombo_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.custom_content_visual`](#obj-definitionsheetsvisualscustom_content_visual) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions`](#obj-definitionsheetsvisualscustom_content_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualscustom_content_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.custom_content_visual.chart_configuration`](#obj-definitionsheetsvisualscustom_content_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualchart_configurationnew) + * [`obj definition.sheets.visuals.custom_content_visual.subtitle`](#obj-definitionsheetsvisualscustom_content_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualsubtitlenew) + * [`obj definition.sheets.visuals.custom_content_visual.subtitle.format_text`](#obj-definitionsheetsvisualscustom_content_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.custom_content_visual.title`](#obj-definitionsheetsvisualscustom_content_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualtitlenew) + * [`obj definition.sheets.visuals.custom_content_visual.title.format_text`](#obj-definitionsheetsvisualscustom_content_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualscustom_content_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.empty_visual`](#obj-definitionsheetsvisualsempty_visual) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualnew) + * [`obj definition.sheets.visuals.empty_visual.actions`](#obj-definitionsheetsvisualsempty_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations`](#obj-definitionsheetsvisualsempty_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.empty_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsempty_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsempty_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.filled_map_visual`](#obj-definitionsheetsvisualsfilled_map_visual) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions`](#obj-definitionsheetsvisualsfilled_map_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsfilled_map_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatial) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationmap_style_options) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationmap_style_optionsnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.window_options`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationwindow_options) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationwindow_optionsnew) + * [`obj definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds`](#obj-definitionsheetsvisualsfilled_map_visualchart_configurationwindow_optionsbounds) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualchart_configurationwindow_optionsboundsnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formatting) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_options) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshape) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapenew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformat) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_color) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colornew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientcolornew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid`](#obj-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorsolidnew) + * [`obj definition.sheets.visuals.filled_map_visual.subtitle`](#obj-definitionsheetsvisualsfilled_map_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualsubtitlenew) + * [`obj definition.sheets.visuals.filled_map_visual.subtitle.format_text`](#obj-definitionsheetsvisualsfilled_map_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.filled_map_visual.title`](#obj-definitionsheetsvisualsfilled_map_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualtitlenew) + * [`obj definition.sheets.visuals.filled_map_visual.title.format_text`](#obj-definitionsheetsvisualsfilled_map_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsfilled_map_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.funnel_chart_visual`](#obj-definitionsheetsvisualsfunnel_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions`](#obj-definitionsheetsvisualsfunnel_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.subtitle`](#obj-definitionsheetsvisualsfunnel_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualsfunnel_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.funnel_chart_visual.title`](#obj-definitionsheetsvisualsfunnel_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualtitlenew) + * [`obj definition.sheets.visuals.funnel_chart_visual.title.format_text`](#obj-definitionsheetsvisualsfunnel_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsfunnel_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.gauge_chart_visual`](#obj-definitionsheetsvisualsgauge_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions`](#obj-definitionsheetsvisualsgauge_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_values) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_options) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarc) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarcnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarc_axis) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarc_axisnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarc_axisrange) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsarc_axisrangenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparison) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisonnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_format) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsprimary_value_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formatting) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_options) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarc) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_color) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientcolornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorsolidnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_value) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueicon) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_condition) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditiondisplay_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditiondisplay_configurationnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionicon_options) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionicon_optionsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_set) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_setnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_color) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolornew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid`](#obj-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorsolidnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.subtitle`](#obj-definitionsheetsvisualsgauge_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualsgauge_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.gauge_chart_visual.title`](#obj-definitionsheetsvisualsgauge_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualtitlenew) + * [`obj definition.sheets.visuals.gauge_chart_visual.title.format_text`](#obj-definitionsheetsvisualsgauge_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsgauge_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.geospatial_map_visual`](#obj-definitionsheetsvisualsgeospatial_map_visual) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions`](#obj-definitionsheetsvisualsgeospatial_map_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolors) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatial) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationmap_style_options) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationmap_style_optionsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_options) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationcluster_marker) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationcluster_markernew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationcluster_markersimple_cluster_marker) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationcluster_markersimple_cluster_markernew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationwindow_options) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationwindow_optionsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds`](#obj-definitionsheetsvisualsgeospatial_map_visualchart_configurationwindow_optionsbounds) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualchart_configurationwindow_optionsboundsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.subtitle`](#obj-definitionsheetsvisualsgeospatial_map_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualsubtitlenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.subtitle.format_text`](#obj-definitionsheetsvisualsgeospatial_map_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.geospatial_map_visual.title`](#obj-definitionsheetsvisualsgeospatial_map_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualtitlenew) + * [`obj definition.sheets.visuals.geospatial_map_visual.title.format_text`](#obj-definitionsheetsvisualsgeospatial_map_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsgeospatial_map_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.heat_map_visual`](#obj-definitionsheetsvisualsheat_map_visual) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions`](#obj-definitionsheetsvisualsheat_map_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsheat_map_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scale) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scalenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scalecolors) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scalecolorsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scalenull_value_color) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolor_scalenull_value_colornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumns) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrows) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_items_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_items_limit_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortfield_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_items_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_items_limit_configurationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortfield_sortnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.heat_map_visual.subtitle`](#obj-definitionsheetsvisualsheat_map_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualsubtitlenew) + * [`obj definition.sheets.visuals.heat_map_visual.subtitle.format_text`](#obj-definitionsheetsvisualsheat_map_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.heat_map_visual.title`](#obj-definitionsheetsvisualsheat_map_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualtitlenew) + * [`obj definition.sheets.visuals.heat_map_visual.title.format_text`](#obj-definitionsheetsvisualsheat_map_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsheat_map_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.histogram_visual`](#obj-definitionsheetsvisualshistogram_visual) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualnew) + * [`obj definition.sheets.visuals.histogram_visual.actions`](#obj-definitionsheetsvisualshistogram_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualshistogram_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationbin_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationbin_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count`](#obj-definitionsheetsvisualshistogram_visualchart_configurationbin_optionsbin_count) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationbin_optionsbin_countnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width`](#obj-definitionsheetsvisualshistogram_visualchart_configurationbin_optionsbin_width) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationbin_optionsbin_widthnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualshistogram_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualshistogram_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualshistogram_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.histogram_visual.subtitle`](#obj-definitionsheetsvisualshistogram_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualsubtitlenew) + * [`obj definition.sheets.visuals.histogram_visual.subtitle.format_text`](#obj-definitionsheetsvisualshistogram_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.histogram_visual.title`](#obj-definitionsheetsvisualshistogram_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualtitlenew) + * [`obj definition.sheets.visuals.histogram_visual.title.format_text`](#obj-definitionsheetsvisualshistogram_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualshistogram_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.insight_visual`](#obj-definitionsheetsvisualsinsight_visual) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualnew) + * [`obj definition.sheets.visuals.insight_visual.actions`](#obj-definitionsheetsvisualsinsight_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.insight_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsinsight_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecast) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_rate) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimum) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparison) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_value) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_value) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_period) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_date) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_movers) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategory) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstime) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_ranked) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankednew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategory) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalue) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_values) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuesnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategory) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative`](#obj-definitionsheetsvisualsinsight_visualinsight_configurationcustom_narrative) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualinsight_configurationcustom_narrativenew) + * [`obj definition.sheets.visuals.insight_visual.subtitle`](#obj-definitionsheetsvisualsinsight_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualsubtitlenew) + * [`obj definition.sheets.visuals.insight_visual.subtitle.format_text`](#obj-definitionsheetsvisualsinsight_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.insight_visual.title`](#obj-definitionsheetsvisualsinsight_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualtitlenew) + * [`obj definition.sheets.visuals.insight_visual.title.format_text`](#obj-definitionsheetsvisualsinsight_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsinsight_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.kpi_visual`](#obj-definitionsheetsvisualskpi_visual) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualnew) + * [`obj definition.sheets.visuals.kpi_visual.actions`](#obj-definitionsheetsvisualskpi_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations`](#obj-definitionsheetsvisualskpi_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualskpi_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_values) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groups) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_options) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparison) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisonnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_format) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprimary_value_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprogress_bar) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionsprogress_barnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_valuenew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionssecondary_value_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows`](#obj-definitionsheetsvisualskpi_visualchart_configurationkpi_optionstrend_arrows) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationkpi_optionstrend_arrowsnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sort) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort`](#obj-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortfield_sortnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting`](#obj-definitionsheetsvisualskpi_visualconditional_formatting) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_options) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_value) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuenew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueicon) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_condition) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditiondisplay_configuration) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditiondisplay_configurationnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionicon_options) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconcustom_conditionicon_optionsnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_set) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_setnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_color) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colornew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolornew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorsolidnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_bar) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_color) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colornew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientcolornew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid`](#obj-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorsolidnew) + * [`obj definition.sheets.visuals.kpi_visual.subtitle`](#obj-definitionsheetsvisualskpi_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualsubtitlenew) + * [`obj definition.sheets.visuals.kpi_visual.subtitle.format_text`](#obj-definitionsheetsvisualskpi_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.kpi_visual.title`](#obj-definitionsheetsvisualskpi_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualtitlenew) + * [`obj definition.sheets.visuals.kpi_visual.title.format_text`](#obj-definitionsheetsvisualskpi_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualskpi_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.line_chart_visual`](#obj-definitionsheetsvisualsline_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions`](#obj-definitionsheetsvisualsline_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsline_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationcontribution_analysis_defaults) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationcontribution_analysis_defaultsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensions) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settingsline_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settingsline_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settingsmarker_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationdefault_series_settingsmarker_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolors) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiples) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsforecast_properties) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsforecast_propertiesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenario) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenarionew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenariowhat_if_point_scenario) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenariowhat_if_point_scenarionew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenariowhat_if_range_scenario) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationsscenariowhat_if_range_scenarionew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsmissing_data_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsmissing_data_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lines) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcalculationpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationstatic_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationstatic_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationcustom_label_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesstyle_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationreference_linesstyle_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsmissing_data_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsmissing_data_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseries) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_item) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettingsline_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettingsline_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettingsmarker_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemsettingsmarker_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_item) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettingsline_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettingsline_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettingsmarker_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemsettingsmarker_style_settingsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitle) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_items_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_items_limit_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolor_items_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolor_items_limit_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sortnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.line_chart_visual.subtitle`](#obj-definitionsheetsvisualsline_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.line_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualsline_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.line_chart_visual.title`](#obj-definitionsheetsvisualsline_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualtitlenew) + * [`obj definition.sheets.visuals.line_chart_visual.title.format_text`](#obj-definitionsheetsvisualsline_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsline_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.pie_chart_visual`](#obj-definitionsheetsvisualspie_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions`](#obj-definitionsheetsvisualspie_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualspie_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcontribution_analysis_defaults) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcontribution_analysis_defaultsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensions) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationcontribution_analysis_defaultscontributor_dimensionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdonut_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdonut_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdonut_optionsarc_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdonut_optionsarc_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationdonut_optionsdonut_center_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationdonut_optionsdonut_center_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiples) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitle) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_limit_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortfield_sortnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.pie_chart_visual.subtitle`](#obj-definitionsheetsvisualspie_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.pie_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualspie_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.pie_chart_visual.title`](#obj-definitionsheetsvisualspie_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualtitlenew) + * [`obj definition.sheets.visuals.pie_chart_visual.title.format_text`](#obj-definitionsheetsvisualspie_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualspie_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.pivot_table_visual`](#obj-definitionsheetsvisualspivot_table_visual) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions`](#obj-definitionsheetsvisualspivot_table_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualspivot_table_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_optionsdata_path_list) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_optionsdata_path_listnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsselected_field_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_optionsselected_field_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumns) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrows) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationpaginated_report_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationpaginated_report_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_by) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bynew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumn) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnsort_by) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnsort_bynew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bydata_path) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bydata_pathnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bydata_pathsort_paths) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bydata_pathsort_pathsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_byfield) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_byfieldnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_alternate_color_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_alternate_color_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfield_level_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfield_level_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfield_level_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfield_level_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylebordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting`](#obj-definitionsheetsvisualspivot_table_visualconditional_formatting) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscell) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscellnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscellscope) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscellscopenew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_format) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_color) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colornew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolornew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorsolidnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticon) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticonnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_condition) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditiondisplay_configuration) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditiondisplay_configurationnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionicon_options) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionicon_optionsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_set) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_setnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_color) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colornew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolornew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid`](#obj-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorsolidnew) + * [`obj definition.sheets.visuals.pivot_table_visual.subtitle`](#obj-definitionsheetsvisualspivot_table_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualsubtitlenew) + * [`obj definition.sheets.visuals.pivot_table_visual.subtitle.format_text`](#obj-definitionsheetsvisualspivot_table_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.pivot_table_visual.title`](#obj-definitionsheetsvisualspivot_table_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualtitlenew) + * [`obj definition.sheets.visuals.pivot_table_visual.title.format_text`](#obj-definitionsheetsvisualspivot_table_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualspivot_table_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.radar_chart_visual`](#obj-definitionsheetsvisualsradar_chart_visual) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions`](#obj-definitionsheetsvisualsradar_chart_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsradar_chart_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationbase_series_settings) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationbase_series_settingsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationbase_series_settingsarea_style_settings) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationbase_series_settingsarea_style_settingsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axis) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axis) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolor) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_items_limitnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortfield_sortnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.radar_chart_visual.subtitle`](#obj-definitionsheetsvisualsradar_chart_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualsubtitlenew) + * [`obj definition.sheets.visuals.radar_chart_visual.subtitle.format_text`](#obj-definitionsheetsvisualsradar_chart_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.radar_chart_visual.title`](#obj-definitionsheetsvisualsradar_chart_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualtitlenew) + * [`obj definition.sheets.visuals.radar_chart_visual.title.format_text`](#obj-definitionsheetsvisualsradar_chart_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsradar_chart_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual`](#obj-definitionsheetsvisualssankey_diagram_visual) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions`](#obj-definitionsheetsvisualssankey_diagram_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestination) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssource) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweight) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationdestination_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationdestination_items_limitnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationsource_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationsource_items_limitnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sort) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort`](#obj-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortfield_sortnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.subtitle`](#obj-definitionsheetsvisualssankey_diagram_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualsubtitlenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text`](#obj-definitionsheetsvisualssankey_diagram_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.title`](#obj-definitionsheetsvisualssankey_diagram_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualtitlenew) + * [`obj definition.sheets.visuals.sankey_diagram_visual.title.format_text`](#obj-definitionsheetsvisualssankey_diagram_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualssankey_diagram_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.scatter_plot_visual`](#obj-definitionsheetsvisualsscatter_plot_visual) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions`](#obj-definitionsheetsvisualsscatter_plot_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategory) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssize) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axis) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axis) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssize) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axis) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axis) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.subtitle`](#obj-definitionsheetsvisualsscatter_plot_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualsubtitlenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.subtitle.format_text`](#obj-definitionsheetsvisualsscatter_plot_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.scatter_plot_visual.title`](#obj-definitionsheetsvisualsscatter_plot_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualtitlenew) + * [`obj definition.sheets.visuals.scatter_plot_visual.title.format_text`](#obj-definitionsheetsvisualsscatter_plot_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsscatter_plot_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.table_visual`](#obj-definitionsheetsvisualstable_visual) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualnew) + * [`obj definition.sheets.visuals.table_visual.actions`](#obj-definitionsheetsvisualstable_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations`](#obj-definitionsheetsvisualstable_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.table_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualstable_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration`](#obj-definitionsheetsvisualstable_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_styling) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingimage_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingimage_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingimage_configurationsizing_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingimage_configurationsizing_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontent) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_icon_content) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_icon_contentnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_content) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_by) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluescolumn) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluescolumnnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options`](#obj-definitionsheetsvisualstable_visualchart_configurationpaginated_report_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationpaginated_report_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationpagination_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationpagination_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sort) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort`](#obj-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortfield_sortnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_inline_visualizations) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_inline_visualizationsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_inline_visualizationsdata_bars) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_inline_visualizationsdata_barsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_style) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylebordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_style) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylebordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options`](#obj-definitionsheetsvisualstable_visualchart_configurationtable_optionsrow_alternate_color_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtable_optionsrow_alternate_color_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionsnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_style) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborder) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylebordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderbottom) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderbottomnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontal) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderinner_horizontalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderinner_vertical) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderinner_verticalnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderleft) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderleftnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderright) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_borderrightnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_bordertop) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderside_specific_bordertopnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderuniform_border) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderuniform_bordernew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configurationnew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight`](#obj-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting`](#obj-definitionsheetsvisualstable_visualconditional_formatting) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscell) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscellnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_format) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_color) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorsolidnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticon) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticonnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_condition) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditiondisplay_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditiondisplay_configurationnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionicon_options) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticoncustom_conditionicon_optionsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_set) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_setnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_color) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorsolidnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrow) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrownew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_color) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientcolornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorsolidnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_color) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradient) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientcolor) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientcolornew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientcolorstops) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientcolorstopsnew) + * [`obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid`](#obj-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorsolid) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorsolidnew) + * [`obj definition.sheets.visuals.table_visual.subtitle`](#obj-definitionsheetsvisualstable_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualsubtitlenew) + * [`obj definition.sheets.visuals.table_visual.subtitle.format_text`](#obj-definitionsheetsvisualstable_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.table_visual.title`](#obj-definitionsheetsvisualstable_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualtitlenew) + * [`obj definition.sheets.visuals.table_visual.title.format_text`](#obj-definitionsheetsvisualstable_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualstable_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.tree_map_visual`](#obj-definitionsheetsvisualstree_map_visual) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions`](#obj-definitionsheetsvisualstree_map_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualstree_map_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_scale) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_scalenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_scalecolors) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_scalecolorsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color`](#obj-definitionsheetsvisualstree_map_visualchart_configurationcolor_scalenull_value_color) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationcolor_scalenull_value_colornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolors) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroups) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizes) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend`](#obj-definitionsheetsvisualstree_map_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualstree_map_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_group_items_limit_configuration) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_group_items_limit_configurationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sort) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort`](#obj-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortfield_sortnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltip) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltip) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltipnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fields) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemcolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item`](#obj-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_item) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsfield_tooltip_itemnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.tree_map_visual.subtitle`](#obj-definitionsheetsvisualstree_map_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualsubtitlenew) + * [`obj definition.sheets.visuals.tree_map_visual.subtitle.format_text`](#obj-definitionsheetsvisualstree_map_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.tree_map_visual.title`](#obj-definitionsheetsvisualstree_map_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualtitlenew) + * [`obj definition.sheets.visuals.tree_map_visual.title.format_text`](#obj-definitionsheetsvisualstree_map_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualstree_map_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.waterfall_visual`](#obj-definitionsheetsvisualswaterfall_visual) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions`](#obj-definitionsheetsvisualswaterfall_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualswaterfall_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labels) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_types) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesdata_path_label_type) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesdata_path_label_typenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesfield_label_type) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesfield_label_typenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesmaximum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesmaximum_label_typenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesminimum_label_type) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesminimum_label_typenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_type) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_label_typesrange_ends_label_typenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationdata_labelslabel_font_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdowns) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategories) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvalues) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationlegend) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationlegendnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitle) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsdate_axis_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrange) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_driven) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangedata_drivennew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_max) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsrangemin_maxnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscale) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinear) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelinearnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmic) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsscalelogarithmicnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_range) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_range) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsvisible_rangepercent_rangenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationbreakdown_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationbreakdown_items_limitnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palette) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palettenew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palettecolor_map) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palettecolor_mapnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palettecolor_mapelement) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationvisual_palettecolor_mapelementnew) + * [`obj definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options`](#obj-definitionsheetsvisualswaterfall_visualchart_configurationwaterfall_chart_options) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualchart_configurationwaterfall_chart_optionsnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.waterfall_visual.subtitle`](#obj-definitionsheetsvisualswaterfall_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualsubtitlenew) + * [`obj definition.sheets.visuals.waterfall_visual.subtitle.format_text`](#obj-definitionsheetsvisualswaterfall_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.waterfall_visual.title`](#obj-definitionsheetsvisualswaterfall_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualtitlenew) + * [`obj definition.sheets.visuals.waterfall_visual.title.format_text`](#obj-definitionsheetsvisualswaterfall_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualswaterfall_visualtitleformat_textnew) + * [`obj definition.sheets.visuals.word_cloud_visual`](#obj-definitionsheetsvisualsword_cloud_visual) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions`](#obj-definitionsheetsvisualsword_cloud_visualactions) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operations) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationselected_fields_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationselected_fields_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationtarget_visuals_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationtarget_visuals_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationtarget_visuals_configurationsame_sheet_target_visual_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsnavigation_operation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsnavigation_operationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsnavigation_operationlocal_navigation_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsnavigation_operationlocal_navigation_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurations) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvalue) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluenew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_values) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_values_configurationcustom_valuesnew) + * [`obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation`](#obj-definitionsheetsvisualsword_cloud_visualactionsaction_operationsurl_operation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualactionsaction_operationsurl_operationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_options) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_to) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tonew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsapply_tocolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_size) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_sizenew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weight) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_configurationfont_weightnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wells) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wells) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_by) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssize) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecalculated_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecalculated_measure_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_field) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldaggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldcolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldcolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationdecimal_places_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnegative_value_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationnull_value_format_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separator) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationseparator_configurationthousands_separatornew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configuration) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_items_limit) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_items_limitnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sort) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sort) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_function) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregation) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionnumerical_aggregation_functionpercentile_aggregationnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_by) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortsort_bynew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortfield_sort) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortfield_sortnew) + * [`obj definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options`](#obj-definitionsheetsvisualsword_cloud_visualchart_configurationword_cloud_options) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualchart_configurationword_cloud_optionsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchies) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchynew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchynew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchy) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchynew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchycolumns) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchycolumnsnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filters) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscategory_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filtersnumeric_equality_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filter) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filternew) + * [`obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column`](#obj-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumn) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterstime_range_filtercolumnnew) + * [`obj definition.sheets.visuals.word_cloud_visual.subtitle`](#obj-definitionsheetsvisualsword_cloud_visualsubtitle) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualsubtitlenew) + * [`obj definition.sheets.visuals.word_cloud_visual.subtitle.format_text`](#obj-definitionsheetsvisualsword_cloud_visualsubtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualsubtitleformat_textnew) + * [`obj definition.sheets.visuals.word_cloud_visual.title`](#obj-definitionsheetsvisualsword_cloud_visualtitle) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualtitlenew) + * [`obj definition.sheets.visuals.word_cloud_visual.title.format_text`](#obj-definitionsheetsvisualsword_cloud_visualtitleformat_text) + * [`fn new()`](#fn-definitionsheetsvisualsword_cloud_visualtitleformat_textnew) +* [`obj permissions`](#obj-permissions) + * [`fn new()`](#fn-permissionsnew) +* [`obj source_entity`](#obj-source_entity) + * [`fn new()`](#fn-source_entitynew) + * [`obj source_entity.source_analysis`](#obj-source_entitysource_analysis) + * [`fn new()`](#fn-source_entitysource_analysisnew) + * [`obj source_entity.source_analysis.data_set_references`](#obj-source_entitysource_analysisdata_set_references) + * [`fn new()`](#fn-source_entitysource_analysisdata_set_referencesnew) + * [`obj source_entity.source_template`](#obj-source_entitysource_template) + * [`fn new()`](#fn-source_entitysource_templatenew) +* [`obj timeouts`](#obj-timeouts) + * [`fn new()`](#fn-timeoutsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.quicksight_template.new` injects a new `aws_quicksight_template` 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.quicksight_template.new('some_id') + +You can get the reference to the `id` field of the created `aws.quicksight_template` using the reference: + + $._ref.aws_quicksight_template.some_id.get('id') + +This is the same as directly entering `"${ aws_quicksight_template.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. + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting resource block. + - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object. + - `tags_all` (`obj`): Set the `tags_all` field on the resulting resource block. When `null`, the `tags_all` field will be omitted from the resulting object. + - `template_id` (`string`): Set the `template_id` field on the resulting resource block. + - `version_description` (`string`): Set the `version_description` field on the resulting resource block. + - `definition` (`list[obj]`): Set the `definition` field on the resulting resource block. When `null`, the `definition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.new](#fn-definitionnew) constructor. + - `permissions` (`list[obj]`): Set the `permissions` field on the resulting resource block. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.permissions.new](#fn-permissionsnew) constructor. + - `source_entity` (`list[obj]`): Set the `source_entity` field on the resulting resource block. When `null`, the `source_entity` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.new](#fn-source_entitynew) constructor. + - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.timeouts.new](#fn-timeoutsnew) constructor. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.quicksight_template.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_template` +Terraform resource. + +Unlike [aws.quicksight_template.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**: + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object. + - `tags_all` (`obj`): Set the `tags_all` field on the resulting object. When `null`, the `tags_all` field will be omitted from the resulting object. + - `template_id` (`string`): Set the `template_id` field on the resulting object. + - `version_description` (`string`): Set the `version_description` field on the resulting object. + - `definition` (`list[obj]`): Set the `definition` field on the resulting object. When `null`, the `definition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.new](#fn-definitionnew) constructor. + - `permissions` (`list[obj]`): Set the `permissions` field on the resulting object. When `null`, the `permissions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.permissions.new](#fn-permissionsnew) constructor. + - `source_entity` (`list[obj]`): Set the `source_entity` field on the resulting object. When `null`, the `source_entity` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.new](#fn-source_entitynew) constructor. + - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.timeouts.new](#fn-timeoutsnew) constructor. + +**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 `quicksight_template` resource into the root Terraform configuration. + + +### fn withAwsAccountId + +```ts +withAwsAccountId() +``` + +`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the aws_account_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `aws_account_id` field. + + +### fn withDefinition + +```ts +withDefinition() +``` + +`aws.list[obj].withDefinition` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the definition 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].withDefinitionMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `definition` field. + + +### fn withDefinitionMixin + +```ts +withDefinitionMixin() +``` + +`aws.list[obj].withDefinitionMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the definition 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].withDefinition](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `definition` field. + + +### fn withName + +```ts +withName() +``` + +`aws.string.withName` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the name field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `name` field. + + +### fn withPermissions + +```ts +withPermissions() +``` + +`aws.list[obj].withPermissions` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the permissions 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].withPermissionsMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `permissions` field. + + +### fn withPermissionsMixin + +```ts +withPermissionsMixin() +``` + +`aws.list[obj].withPermissionsMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the permissions 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].withPermissions](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `permissions` field. + + +### fn withSourceEntity + +```ts +withSourceEntity() +``` + +`aws.list[obj].withSourceEntity` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the source_entity 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].withSourceEntityMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `source_entity` field. + + +### fn withSourceEntityMixin + +```ts +withSourceEntityMixin() +``` + +`aws.list[obj].withSourceEntityMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the source_entity 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].withSourceEntity](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `source_entity` field. + + +### fn withTags + +```ts +withTags() +``` + +`aws.obj.withTags` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the tags field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags` field. + + +### fn withTagsAll + +```ts +withTagsAll() +``` + +`aws.obj.withTagsAll` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the tags_all field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags_all` field. + + +### fn withTemplateId + +```ts +withTemplateId() +``` + +`aws.string.withTemplateId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the template_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `template_id` field. + + +### fn withTimeouts + +```ts +withTimeouts() +``` + +`aws.obj.withTimeouts` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the timeouts field. + +This function will replace the map with the passed in `value`. If you wish to instead merge the +passed in value to the existing map, use the [aws.obj.withTimeoutsMixin](TODO) function. + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `timeouts` field. + + +### fn withTimeoutsMixin + +```ts +withTimeoutsMixin() +``` + +`aws.obj.withTimeoutsMixin` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the timeouts field. + +This function will merge the passed in value to the existing map. If you wish +to instead replace the entire map with the passed in `value`, use the [aws.obj.withTimeouts](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `timeouts` field. + + +### fn withVersionDescription + +```ts +withVersionDescription() +``` + +`aws.string.withVersionDescription` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the version_description field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `version_description` field. + + +## obj definition + + + +### fn definition.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.new` constructs a new object with attributes and blocks configured for the `definition` +Terraform sub block. + + + +**Args**: + - `analysis_defaults` (`list[obj]`): Set the `analysis_defaults` field on the resulting object. When `null`, the `analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.new](#fn-definitionanalysis_defaultsnew) constructor. + - `calculated_fields` (`list[obj]`): Set the `calculated_fields` field on the resulting object. When `null`, the `calculated_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.calculated_fields.new](#fn-definitioncalculated_fieldsnew) constructor. + - `column_configurations` (`list[obj]`): Set the `column_configurations` field on the resulting object. When `null`, the `column_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.new](#fn-definitioncolumn_configurationsnew) constructor. + - `data_set_configuration` (`list[obj]`): Set the `data_set_configuration` field on the resulting object. When `null`, the `data_set_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.new](#fn-definitiondata_set_configurationnew) constructor. + - `filter_groups` (`list[obj]`): Set the `filter_groups` field on the resulting object. When `null`, the `filter_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.new](#fn-definitionfilter_groupsnew) constructor. + - `parameters_declarations` (`list[obj]`): Set the `parameters_declarations` field on the resulting object. When `null`, the `parameters_declarations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.new](#fn-definitionparameters_declarationsnew) constructor. + - `sheets` (`list[obj]`): Set the `sheets` field on the resulting object. When `null`, the `sheets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.new](#fn-definitionsheetsnew) constructor. + +**Returns**: + - An attribute object that represents the `definition` sub block. + + +## obj definition.analysis_defaults + + + +### fn definition.analysis_defaults.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.new` constructs a new object with attributes and blocks configured for the `analysis_defaults` +Terraform sub block. + + + +**Args**: + - `default_new_sheet_configuration` (`list[obj]`): Set the `default_new_sheet_configuration` field on the resulting object. When `null`, the `default_new_sheet_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.new](#fn-definitiondefinitiondefault_new_sheet_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `analysis_defaults` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.new` constructs a new object with attributes and blocks configured for the `default_new_sheet_configuration` +Terraform sub block. + + + +**Args**: + - `sheet_content_type` (`string`): Set the `sheet_content_type` field on the resulting object. When `null`, the `sheet_content_type` field will be omitted from the resulting object. + - `interactive_layout_configuration` (`list[obj]`): Set the `interactive_layout_configuration` field on the resulting object. When `null`, the `interactive_layout_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.new](#fn-definitiondefinitionanalysis_defaultsinteractive_layout_configurationnew) constructor. + - `paginated_layout_configuration` (`list[obj]`): Set the `paginated_layout_configuration` field on the resulting object. When `null`, the `paginated_layout_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.new](#fn-definitiondefinitionanalysis_defaultspaginated_layout_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `default_new_sheet_configuration` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.new` constructs a new object with attributes and blocks configured for the `interactive_layout_configuration` +Terraform sub block. + + + +**Args**: + - `free_form` (`list[obj]`): Set the `free_form` field on the resulting object. When `null`, the `free_form` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationfree_formnew) constructor. + - `grid` (`list[obj]`): Set the `grid` field on the resulting object. When `null`, the `grid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationgridnew) constructor. + +**Returns**: + - An attribute object that represents the `interactive_layout_configuration` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.new` constructs a new object with attributes and blocks configured for the `free_form` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationcanvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `free_form` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationfree_formscreen_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.free_form.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. + +**Returns**: + - An attribute object that represents the `screen_canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.new` constructs a new object with attributes and blocks configured for the `grid` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationcanvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `grid` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationinteractive_layout_configurationgridscreen_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.interactive_layout_configuration.grid.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. When `null`, the `optimized_view_port_width` field will be omitted from the resulting object. + - `resize_option` (`string`): Set the `resize_option` field on the resulting object. + +**Returns**: + - An attribute object that represents the `screen_canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.new` constructs a new object with attributes and blocks configured for the `paginated_layout_configuration` +Terraform sub block. + + + +**Args**: + - `section_based` (`list[obj]`): Set the `section_based` field on the resulting object. When `null`, the `section_based` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationsection_basednew) constructor. + +**Returns**: + - An attribute object that represents the `paginated_layout_configuration` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.new` constructs a new object with attributes and blocks configured for the `section_based` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationcanvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `section_based` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `paper_canvas_size_options` (`list[obj]`): Set the `paper_canvas_size_options` field on the resulting object. When `null`, the `paper_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedpaper_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `paper_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `paper_orientation` (`string`): Set the `paper_orientation` field on the resulting object. When `null`, the `paper_orientation` field will be omitted from the resulting object. + - `paper_size` (`string`): Set the `paper_size` field on the resulting object. When `null`, the `paper_size` field will be omitted from the resulting object. + - `paper_margin` (`list[obj]`): Set the `paper_margin` field on the resulting object. When `null`, the `paper_margin` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin.new](#fn-definitiondefinitionanalysis_defaultsdefault_new_sheet_configurationpaginated_layout_configurationsection_basedcanvas_size_optionspaper_marginnew) constructor. + +**Returns**: + - An attribute object that represents the `paper_canvas_size_options` sub block. + + +## obj definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin + + + +### fn definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.analysis_defaults.default_new_sheet_configuration.paginated_layout_configuration.section_based.canvas_size_options.paper_canvas_size_options.paper_margin.new` constructs a new object with attributes and blocks configured for the `paper_margin` +Terraform sub block. + + + +**Args**: + - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object. + - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object. + - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object. + - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `paper_margin` sub block. + + +## obj definition.calculated_fields + + + +### fn definition.calculated_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.calculated_fields.new` constructs a new object with attributes and blocks configured for the `calculated_fields` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_fields` sub block. + + +## obj definition.column_configurations + + + +### fn definition.column_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.new` constructs a new object with attributes and blocks configured for the `column_configurations` +Terraform sub block. + + + +**Args**: + - `role` (`string`): Set the `role` field on the resulting object. When `null`, the `role` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.column.new](#fn-definitiondefinitioncolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.new](#fn-definitiondefinitionformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `column_configurations` sub block. + + +## obj definition.column_configurations.column + + + +### fn definition.column_configurations.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.column_configurations.format_configuration + + + +### fn definition.column_configurations.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format_configuration` (`list[obj]`): Set the `date_time_format_configuration` field on the resulting object. When `null`, the `date_time_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsdate_time_format_configurationnew) constructor. + - `number_format_configuration` (`list[obj]`): Set the `number_format_configuration` field on the resulting object. When `null`, the `number_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsnumber_format_configurationnew) constructor. + - `string_format_configuration` (`list[obj]`): Set the `string_format_configuration` field on the resulting object. When `null`, the `string_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsstring_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.new` constructs a new object with attributes and blocks configured for the `date_time_format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.new` constructs a new object with attributes and blocks configured for the `string_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `string_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitioncolumn_configurationsformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.column_configurations.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.data_set_configuration + + + +### fn definition.data_set_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.data_set_configuration.new` constructs a new object with attributes and blocks configured for the `data_set_configuration` +Terraform sub block. + + + +**Args**: + - `placeholder` (`string`): Set the `placeholder` field on the resulting object. When `null`, the `placeholder` field will be omitted from the resulting object. + - `column_group_schema_list` (`list[obj]`): Set the `column_group_schema_list` field on the resulting object. When `null`, the `column_group_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.new](#fn-definitiondefinitioncolumn_group_schema_listnew) constructor. + - `data_set_schema` (`list[obj]`): Set the `data_set_schema` field on the resulting object. When `null`, the `data_set_schema` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.data_set_schema.new](#fn-definitiondefinitiondata_set_schemanew) constructor. + +**Returns**: + - An attribute object that represents the `data_set_configuration` sub block. + + +## obj definition.data_set_configuration.column_group_schema_list + + + +### fn definition.data_set_configuration.column_group_schema_list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.new` constructs a new object with attributes and blocks configured for the `column_group_schema_list` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `column_group_column_schema_list` (`list[obj]`): Set the `column_group_column_schema_list` field on the resulting object. When `null`, the `column_group_column_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list.new](#fn-definitiondefinitiondata_set_configurationcolumn_group_column_schema_listnew) constructor. + +**Returns**: + - An attribute object that represents the `column_group_schema_list` sub block. + + +## obj definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list + + + +### fn definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.data_set_configuration.column_group_schema_list.column_group_column_schema_list.new` constructs a new object with attributes and blocks configured for the `column_group_column_schema_list` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `column_group_column_schema_list` sub block. + + +## obj definition.data_set_configuration.data_set_schema + + + +### fn definition.data_set_configuration.data_set_schema.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.data_set_configuration.data_set_schema.new` constructs a new object with attributes and blocks configured for the `data_set_schema` +Terraform sub block. + + + +**Args**: + - `column_schema_list` (`list[obj]`): Set the `column_schema_list` field on the resulting object. When `null`, the `column_schema_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.data_set_configuration.data_set_schema.column_schema_list.new](#fn-definitiondefinitiondata_set_configurationcolumn_schema_listnew) constructor. + +**Returns**: + - An attribute object that represents the `data_set_schema` sub block. + + +## obj definition.data_set_configuration.data_set_schema.column_schema_list + + + +### fn definition.data_set_configuration.data_set_schema.column_schema_list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.data_set_configuration.data_set_schema.column_schema_list.new` constructs a new object with attributes and blocks configured for the `column_schema_list` +Terraform sub block. + + + +**Args**: + - `data_type` (`string`): Set the `data_type` field on the resulting object. When `null`, the `data_type` field will be omitted from the resulting object. + - `geographic_role` (`string`): Set the `geographic_role` field on the resulting object. When `null`, the `geographic_role` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `column_schema_list` sub block. + + +## obj definition.filter_groups + + + +### fn definition.filter_groups.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.new` constructs a new object with attributes and blocks configured for the `filter_groups` +Terraform sub block. + + + +**Args**: + - `cross_dataset` (`string`): Set the `cross_dataset` field on the resulting object. + - `filter_group_id` (`string`): Set the `filter_group_id` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + - `filters` (`list[obj]`): Set the `filters` field on the resulting object. When `null`, the `filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.new](#fn-definitiondefinitionfiltersnew) constructor. + - `scope_configuration` (`list[obj]`): Set the `scope_configuration` field on the resulting object. When `null`, the `scope_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.new](#fn-definitiondefinitionscope_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_groups` sub block. + + +## obj definition.filter_groups.filters + + + +### fn definition.filter_groups.filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.new` constructs a new object with attributes and blocks configured for the `filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.new](#fn-definitiondefinitionfilter_groupscategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.new](#fn-definitiondefinitionfilter_groupsnumeric_equality_filternew) constructor. + - `numeric_range_filter` (`list[obj]`): Set the `numeric_range_filter` field on the resulting object. When `null`, the `numeric_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.new](#fn-definitiondefinitionfilter_groupsnumeric_range_filternew) constructor. + - `relative_dates_filter` (`list[obj]`): Set the `relative_dates_filter` field on the resulting object. When `null`, the `relative_dates_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.new](#fn-definitiondefinitionfilter_groupsrelative_dates_filternew) constructor. + - `time_equality_filter` (`list[obj]`): Set the `time_equality_filter` field on the resulting object. When `null`, the `time_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.new](#fn-definitiondefinitionfilter_groupstime_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.new](#fn-definitiondefinitionfilter_groupstime_range_filternew) constructor. + - `top_bottom_filter` (`list[obj]`): Set the `top_bottom_filter` field on the resulting object. When `null`, the `top_bottom_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.new](#fn-definitiondefinitionfilter_groupstop_bottom_filternew) constructor. + +**Returns**: + - An attribute object that represents the `filters` sub block. + + +## obj definition.filter_groups.filters.category_filter + + + +### fn definition.filter_groups.filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.new](#fn-definitiondefinitionfilter_groupsfiltersconfigurationnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.filter_groups.filters.category_filter.column + + + +### fn definition.filter_groups.filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.category_filter.configuration + + + +### fn definition.filter_groups.filters.category_filter.configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.new` constructs a new object with attributes and blocks configured for the `configuration` +Terraform sub block. + + + +**Args**: + - `custom_filter_configuration` (`list[obj]`): Set the `custom_filter_configuration` field on the resulting object. When `null`, the `custom_filter_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filtercustom_filter_configurationnew) constructor. + - `custom_filter_list_configuration` (`list[obj]`): Set the `custom_filter_list_configuration` field on the resulting object. When `null`, the `custom_filter_list_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filtercustom_filter_list_configurationnew) constructor. + - `filter_list_configuration` (`list[obj]`): Set the `filter_list_configuration` field on the resulting object. When `null`, the `filter_list_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.filter_list_configuration.new](#fn-definitiondefinitionfilter_groupsfilterscategory_filterfilter_list_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `configuration` sub block. + + +## obj definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration + + + +### fn definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_configuration.new` constructs a new object with attributes and blocks configured for the `custom_filter_configuration` +Terraform sub block. + + + +**Args**: + - `category_value` (`string`): Set the `category_value` field on the resulting object. When `null`, the `category_value` field will be omitted from the resulting object. + - `match_operator` (`string`): Set the `match_operator` field on the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_filter_configuration` sub block. + + +## obj definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration + + + +### fn definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.custom_filter_list_configuration.new` constructs a new object with attributes and blocks configured for the `custom_filter_list_configuration` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. When `null`, the `category_values` field will be omitted from the resulting object. + - `match_operator` (`string`): Set the `match_operator` field on the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_filter_list_configuration` sub block. + + +## obj definition.filter_groups.filters.category_filter.configuration.filter_list_configuration + + + +### fn definition.filter_groups.filters.category_filter.configuration.filter_list_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.category_filter.configuration.filter_list_configuration.new` constructs a new object with attributes and blocks configured for the `filter_list_configuration` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. When `null`, the `category_values` field will be omitted from the resulting object. + - `match_operator` (`string`): Set the `match_operator` field on the resulting object. + - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `filter_list_configuration` sub block. + + +## obj definition.filter_groups.filters.numeric_equality_filter + + + +### fn definition.filter_groups.filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `match_operator` (`string`): Set the `match_operator` field on the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object. + - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function + + + +### fn definition.filter_groups.filters.numeric_equality_filter.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_equality_filternumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function + + + +### fn definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_equality_filteraggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.filter_groups.filters.numeric_equality_filter.column + + + +### fn definition.filter_groups.filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter + + + +### fn definition.filter_groups.filters.numeric_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.new` constructs a new object with attributes and blocks configured for the `numeric_range_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `include_maximum` (`bool`): Set the `include_maximum` field on the resulting object. When `null`, the `include_maximum` field will be omitted from the resulting object. + - `include_minimum` (`bool`): Set the `include_minimum` field on the resulting object. When `null`, the `include_minimum` field will be omitted from the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `select_all_options` (`string`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` field will be omitted from the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + - `range_maximum` (`list[obj]`): Set the `range_maximum` field on the resulting object. When `null`, the `range_maximum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_maximum.new](#fn-definitiondefinitionfilter_groupsfiltersrange_maximumnew) constructor. + - `range_minimum` (`list[obj]`): Set the `range_minimum` field on the resulting object. When `null`, the `range_minimum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_minimum.new](#fn-definitiondefinitionfilter_groupsfiltersrange_minimumnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_range_filter` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.aggregation_function + + + +### fn definition.filter_groups.filters.numeric_range_filter.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_range_filternumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function + + + +### fn definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfiltersnumeric_range_filteraggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.column + + + +### fn definition.filter_groups.filters.numeric_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.range_maximum + + + +### fn definition.filter_groups.filters.numeric_range_filter.range_maximum.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_maximum.new` constructs a new object with attributes and blocks configured for the `range_maximum` +Terraform sub block. + + + +**Args**: + - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object. + - `static_value` (`number`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_maximum` sub block. + + +## obj definition.filter_groups.filters.numeric_range_filter.range_minimum + + + +### fn definition.filter_groups.filters.numeric_range_filter.range_minimum.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.numeric_range_filter.range_minimum.new` constructs a new object with attributes and blocks configured for the `range_minimum` +Terraform sub block. + + + +**Args**: + - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object. + - `static_value` (`number`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_minimum` sub block. + + +## obj definition.filter_groups.filters.relative_dates_filter + + + +### fn definition.filter_groups.filters.relative_dates_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.new` constructs a new object with attributes and blocks configured for the `relative_dates_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `minimum_granularity` (`string`): Set the `minimum_granularity` field on the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + - `relative_date_type` (`string`): Set the `relative_date_type` field on the resulting object. + - `relative_date_value` (`number`): Set the `relative_date_value` field on the resulting object. When `null`, the `relative_date_value` field will be omitted from the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `anchor_date_configuration` (`list[obj]`): Set the `anchor_date_configuration` field on the resulting object. When `null`, the `anchor_date_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersanchor_date_configurationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + - `exclude_period_configuration` (`list[obj]`): Set the `exclude_period_configuration` field on the resulting object. When `null`, the `exclude_period_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersexclude_period_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `relative_dates_filter` sub block. + + +## obj definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration + + + +### fn definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.anchor_date_configuration.new` constructs a new object with attributes and blocks configured for the `anchor_date_configuration` +Terraform sub block. + + + +**Args**: + - `anchor_option` (`string`): Set the `anchor_option` field on the resulting object. When `null`, the `anchor_option` field will be omitted from the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `anchor_date_configuration` sub block. + + +## obj definition.filter_groups.filters.relative_dates_filter.column + + + +### fn definition.filter_groups.filters.relative_dates_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration + + + +### fn definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.relative_dates_filter.exclude_period_configuration.new` constructs a new object with attributes and blocks configured for the `exclude_period_configuration` +Terraform sub block. + + + +**Args**: + - `amount` (`number`): Set the `amount` field on the resulting object. + - `granularity` (`string`): Set the `granularity` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `exclude_period_configuration` sub block. + + +## obj definition.filter_groups.filters.time_equality_filter + + + +### fn definition.filter_groups.filters.time_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.new` constructs a new object with attributes and blocks configured for the `time_equality_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_equality_filter` sub block. + + +## obj definition.filter_groups.filters.time_equality_filter.column + + + +### fn definition.filter_groups.filters.time_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.time_range_filter + + + +### fn definition.filter_groups.filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `include_maximum` (`bool`): Set the `include_maximum` field on the resulting object. When `null`, the `include_maximum` field will be omitted from the resulting object. + - `include_minimum` (`bool`): Set the `include_minimum` field on the resulting object. When `null`, the `include_minimum` field will be omitted from the resulting object. + - `null_option` (`string`): Set the `null_option` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + - `exclude_period_configuration` (`list[obj]`): Set the `exclude_period_configuration` field on the resulting object. When `null`, the `exclude_period_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.exclude_period_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersexclude_period_configurationnew) constructor. + - `range_maximum_value` (`list[obj]`): Set the `range_maximum_value` field on the resulting object. When `null`, the `range_maximum_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.new](#fn-definitiondefinitionfilter_groupsfiltersrange_maximum_valuenew) constructor. + - `range_minimum_value` (`list[obj]`): Set the `range_minimum_value` field on the resulting object. When `null`, the `range_minimum_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.new](#fn-definitiondefinitionfilter_groupsfiltersrange_minimum_valuenew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.column + + + +### fn definition.filter_groups.filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.exclude_period_configuration + + + +### fn definition.filter_groups.filters.time_range_filter.exclude_period_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.exclude_period_configuration.new` constructs a new object with attributes and blocks configured for the `exclude_period_configuration` +Terraform sub block. + + + +**Args**: + - `amount` (`number`): Set the `amount` field on the resulting object. + - `granularity` (`string`): Set the `granularity` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `exclude_period_configuration` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.range_maximum_value + + + +### fn definition.filter_groups.filters.time_range_filter.range_maximum_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.new` constructs a new object with attributes and blocks configured for the `range_maximum_value` +Terraform sub block. + + + +**Args**: + - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object. + - `static_value` (`string`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object. + - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date.new](#fn-definitiondefinitionfilter_groupsfilterstime_range_filterrolling_datenew) constructor. + +**Returns**: + - An attribute object that represents the `range_maximum_value` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date + + + +### fn definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_maximum_value.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `rolling_date` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.range_minimum_value + + + +### fn definition.filter_groups.filters.time_range_filter.range_minimum_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.new` constructs a new object with attributes and blocks configured for the `range_minimum_value` +Terraform sub block. + + + +**Args**: + - `parameter` (`string`): Set the `parameter` field on the resulting object. When `null`, the `parameter` field will be omitted from the resulting object. + - `static_value` (`string`): Set the `static_value` field on the resulting object. When `null`, the `static_value` field will be omitted from the resulting object. + - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date.new](#fn-definitiondefinitionfilter_groupsfilterstime_range_filterrolling_datenew) constructor. + +**Returns**: + - An attribute object that represents the `range_minimum_value` sub block. + + +## obj definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date + + + +### fn definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.time_range_filter.range_minimum_value.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `rolling_date` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter + + + +### fn definition.filter_groups.filters.top_bottom_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.new` constructs a new object with attributes and blocks configured for the `top_bottom_filter` +Terraform sub block. + + + +**Args**: + - `filter_id` (`string`): Set the `filter_id` field on the resulting object. + - `limit` (`number`): Set the `limit` field on the resulting object. When `null`, the `limit` field will be omitted from the resulting object. + - `parameter_name` (`string`): Set the `parameter_name` field on the resulting object. When `null`, the `parameter_name` field will be omitted from the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `aggregation_sort_configuration` (`list[obj]`): Set the `aggregation_sort_configuration` field on the resulting object. When `null`, the `aggregation_sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.new](#fn-definitiondefinitionfilter_groupsfiltersaggregation_sort_configurationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.column.new](#fn-definitiondefinitionfilter_groupsfilterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `top_bottom_filter` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration + + + +### fn definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.new` constructs a new object with attributes and blocks configured for the `aggregation_sort_configuration` +Terraform sub block. + + + +**Args**: + - `sort_direction` (`string`): Set the `sort_direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filtercolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_sort_configuration` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function + + + +### fn definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function + + + +### fn definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionfilter_groupsfilterstop_bottom_filteraggregation_sort_configurationaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column + + + +### fn definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.aggregation_sort_configuration.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.filters.top_bottom_filter.column + + + +### fn definition.filter_groups.filters.top_bottom_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.filters.top_bottom_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.filter_groups.scope_configuration + + + +### fn definition.filter_groups.scope_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.scope_configuration.new` constructs a new object with attributes and blocks configured for the `scope_configuration` +Terraform sub block. + + + +**Args**: + - `selected_sheets` (`list[obj]`): Set the `selected_sheets` field on the resulting object. When `null`, the `selected_sheets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.new](#fn-definitiondefinitionfilter_groupsselected_sheetsnew) constructor. + +**Returns**: + - An attribute object that represents the `scope_configuration` sub block. + + +## obj definition.filter_groups.scope_configuration.selected_sheets + + + +### fn definition.filter_groups.scope_configuration.selected_sheets.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.new` constructs a new object with attributes and blocks configured for the `selected_sheets` +Terraform sub block. + + + +**Args**: + - `sheet_visual_scoping_configurations` (`list[obj]`): Set the `sheet_visual_scoping_configurations` field on the resulting object. When `null`, the `sheet_visual_scoping_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations.new](#fn-definitiondefinitionfilter_groupsscope_configurationsheet_visual_scoping_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `selected_sheets` sub block. + + +## obj definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations + + + +### fn definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.filter_groups.scope_configuration.selected_sheets.sheet_visual_scoping_configurations.new` constructs a new object with attributes and blocks configured for the `sheet_visual_scoping_configurations` +Terraform sub block. + + + +**Args**: + - `scope` (`string`): Set the `scope` field on the resulting object. + - `sheet_id` (`string`): Set the `sheet_id` field on the resulting object. + - `visual_ids` (`list`): Set the `visual_ids` field on the resulting object. When `null`, the `visual_ids` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `sheet_visual_scoping_configurations` sub block. + + +## obj definition.parameters_declarations + + + +### fn definition.parameters_declarations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.new` constructs a new object with attributes and blocks configured for the `parameters_declarations` +Terraform sub block. + + + +**Args**: + - `date_time_parameter_declaration` (`list[obj]`): Set the `date_time_parameter_declaration` field on the resulting object. When `null`, the `date_time_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.new](#fn-definitiondefinitiondate_time_parameter_declarationnew) constructor. + - `decimal_parameter_declaration` (`list[obj]`): Set the `decimal_parameter_declaration` field on the resulting object. When `null`, the `decimal_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.new](#fn-definitiondefinitiondecimal_parameter_declarationnew) constructor. + - `integer_parameter_declaration` (`list[obj]`): Set the `integer_parameter_declaration` field on the resulting object. When `null`, the `integer_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.new](#fn-definitiondefinitioninteger_parameter_declarationnew) constructor. + - `string_parameter_declaration` (`list[obj]`): Set the `string_parameter_declaration` field on the resulting object. When `null`, the `string_parameter_declaration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.new](#fn-definitiondefinitionstring_parameter_declarationnew) constructor. + +**Returns**: + - An attribute object that represents the `parameters_declarations` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `date_time_parameter_declaration` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor. + - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_parameter_declaration` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values` +Terraform sub block. + + + +**Args**: + - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object. + - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdynamic_valuenew) constructor. + - `rolling_date` (`list[obj]`): Set the `rolling_date` field on the resulting object. When `null`, the `rolling_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationrolling_datenew) constructor. + +**Returns**: + - An attribute object that represents the `default_values` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value` +Terraform sub block. + + + +**Args**: + - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesdefault_value_columnnew) constructor. + - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesgroup_name_columnnew) constructor. + - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsdate_time_parameter_declarationdefault_valuesuser_name_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_value` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `default_value_column` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `group_name_column` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `user_name_column` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.default_values.rolling_date.new` constructs a new object with attributes and blocks configured for the `rolling_date` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. When `null`, the `data_set_identifier` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `rolling_date` sub block. + + +## obj definition.parameters_declarations.date_time_parameter_declaration.values_when_unset + + + +### fn definition.parameters_declarations.date_time_parameter_declaration.values_when_unset.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.date_time_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset` +Terraform sub block. + + + +**Args**: + - `custom_value` (`string`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object. + - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `values_when_unset` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `decimal_parameter_declaration` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object. + - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor. + - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor. + +**Returns**: + - An attribute object that represents the `decimal_parameter_declaration` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.default_values + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.default_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values` +Terraform sub block. + + + +**Args**: + - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object. + - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdynamic_valuenew) constructor. + +**Returns**: + - An attribute object that represents the `default_values` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value` +Terraform sub block. + + + +**Args**: + - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesdefault_value_columnnew) constructor. + - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesgroup_name_columnnew) constructor. + - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsdecimal_parameter_declarationdefault_valuesuser_name_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_value` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `default_value_column` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `group_name_column` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `user_name_column` sub block. + + +## obj definition.parameters_declarations.decimal_parameter_declaration.values_when_unset + + + +### fn definition.parameters_declarations.decimal_parameter_declaration.values_when_unset.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.decimal_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset` +Terraform sub block. + + + +**Args**: + - `custom_value` (`number`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object. + - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `values_when_unset` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration + + + +### fn definition.parameters_declarations.integer_parameter_declaration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `integer_parameter_declaration` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object. + - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor. + - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor. + +**Returns**: + - An attribute object that represents the `integer_parameter_declaration` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.default_values + + + +### fn definition.parameters_declarations.integer_parameter_declaration.default_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values` +Terraform sub block. + + + +**Args**: + - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object. + - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdynamic_valuenew) constructor. + +**Returns**: + - An attribute object that represents the `default_values` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value + + + +### fn definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value` +Terraform sub block. + + + +**Args**: + - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesdefault_value_columnnew) constructor. + - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesgroup_name_columnnew) constructor. + - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsinteger_parameter_declarationdefault_valuesuser_name_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_value` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column + + + +### fn definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `default_value_column` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column + + + +### fn definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `group_name_column` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column + + + +### fn definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `user_name_column` sub block. + + +## obj definition.parameters_declarations.integer_parameter_declaration.values_when_unset + + + +### fn definition.parameters_declarations.integer_parameter_declaration.values_when_unset.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.integer_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset` +Terraform sub block. + + + +**Args**: + - `custom_value` (`number`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object. + - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `values_when_unset` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration + + + +### fn definition.parameters_declarations.string_parameter_declaration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.new` constructs a new object with attributes and blocks configured for the `string_parameter_declaration` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `parameter_value_type` (`string`): Set the `parameter_value_type` field on the resulting object. + - `default_values` (`list[obj]`): Set the `default_values` field on the resulting object. When `null`, the `default_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.new](#fn-definitiondefinitionparameters_declarationsdefault_valuesnew) constructor. + - `values_when_unset` (`list[obj]`): Set the `values_when_unset` field on the resulting object. When `null`, the `values_when_unset` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.values_when_unset.new](#fn-definitiondefinitionparameters_declarationsvalues_when_unsetnew) constructor. + +**Returns**: + - An attribute object that represents the `string_parameter_declaration` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.default_values + + + +### fn definition.parameters_declarations.string_parameter_declaration.default_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.new` constructs a new object with attributes and blocks configured for the `default_values` +Terraform sub block. + + + +**Args**: + - `static_values` (`list`): Set the `static_values` field on the resulting object. When `null`, the `static_values` field will be omitted from the resulting object. + - `dynamic_value` (`list[obj]`): Set the `dynamic_value` field on the resulting object. When `null`, the `dynamic_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdynamic_valuenew) constructor. + +**Returns**: + - An attribute object that represents the `default_values` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value + + + +### fn definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.new` constructs a new object with attributes and blocks configured for the `dynamic_value` +Terraform sub block. + + + +**Args**: + - `default_value_column` (`list[obj]`): Set the `default_value_column` field on the resulting object. When `null`, the `default_value_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesdefault_value_columnnew) constructor. + - `group_name_column` (`list[obj]`): Set the `group_name_column` field on the resulting object. When `null`, the `group_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesgroup_name_columnnew) constructor. + - `user_name_column` (`list[obj]`): Set the `user_name_column` field on the resulting object. When `null`, the `user_name_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column.new](#fn-definitiondefinitionparameters_declarationsstring_parameter_declarationdefault_valuesuser_name_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_value` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column + + + +### fn definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.default_value_column.new` constructs a new object with attributes and blocks configured for the `default_value_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `default_value_column` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column + + + +### fn definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.group_name_column.new` constructs a new object with attributes and blocks configured for the `group_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `group_name_column` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column + + + +### fn definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.default_values.dynamic_value.user_name_column.new` constructs a new object with attributes and blocks configured for the `user_name_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `user_name_column` sub block. + + +## obj definition.parameters_declarations.string_parameter_declaration.values_when_unset + + + +### fn definition.parameters_declarations.string_parameter_declaration.values_when_unset.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.parameters_declarations.string_parameter_declaration.values_when_unset.new` constructs a new object with attributes and blocks configured for the `values_when_unset` +Terraform sub block. + + + +**Args**: + - `custom_value` (`string`): Set the `custom_value` field on the resulting object. When `null`, the `custom_value` field will be omitted from the resulting object. + - `value_when_unset_option` (`string`): Set the `value_when_unset_option` field on the resulting object. When `null`, the `value_when_unset_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `values_when_unset` sub block. + + +## obj definition.sheets + + + +### fn definition.sheets.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.new` constructs a new object with attributes and blocks configured for the `sheets` +Terraform sub block. + + + +**Args**: + - `content_type` (`string`): Set the `content_type` field on the resulting object. When `null`, the `content_type` field will be omitted from the resulting object. + - `description` (`string`): Set the `description` field on the resulting object. When `null`, the `description` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `sheet_id` (`string`): Set the `sheet_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. When `null`, the `title` field will be omitted from the resulting object. + - `filter_controls` (`list[obj]`): Set the `filter_controls` field on the resulting object. When `null`, the `filter_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.quicksight_template.definition.sheets.filter_controls.new](#fn-definitiondefinitionfilter_controlsnew) constructor. + - `layouts` (`list[obj]`): Set the `layouts` field on the resulting object. When `null`, the `layouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.new](#fn-definitiondefinitionlayoutsnew) constructor. + - `parameter_controls` (`list[obj]`): Set the `parameter_controls` field on the resulting object. When `null`, the `parameter_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.quicksight_template.definition.sheets.parameter_controls.new](#fn-definitiondefinitionparameter_controlsnew) constructor. + - `sheet_control_layouts` (`list[obj]`): Set the `sheet_control_layouts` field on the resulting object. When `null`, the `sheet_control_layouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.new](#fn-definitiondefinitionsheet_control_layoutsnew) constructor. + - `text_boxes` (`list[obj]`): Set the `text_boxes` field on the resulting object. When `null`, the `text_boxes` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.text_boxes.new](#fn-definitiondefinitiontext_boxesnew) constructor. + - `visuals` (`list[obj]`): Set the `visuals` field on the resulting object. When `null`, the `visuals` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.new](#fn-definitiondefinitionvisualsnew) constructor. + +**Returns**: + - An attribute object that represents the `sheets` sub block. + + +## obj definition.sheets.filter_controls + + + +### fn definition.sheets.filter_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.new` constructs a new object with attributes and blocks configured for the `filter_controls` +Terraform sub block. + + + +**Args**: + - `date_time_picker` (`list[obj]`): Set the `date_time_picker` field on the resulting object. When `null`, the `date_time_picker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.new](#fn-definitiondefinitionsheetsdate_time_pickernew) constructor. + - `dropdown` (`list[obj]`): Set the `dropdown` field on the resulting object. When `null`, the `dropdown` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.new](#fn-definitiondefinitionsheetsdropdownnew) constructor. + - `list` (`list[obj]`): Set the `list` field on the resulting object. When `null`, the `list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.new](#fn-definitiondefinitionsheetslistnew) constructor. + - `relative_date_time` (`list[obj]`): Set the `relative_date_time` field on the resulting object. When `null`, the `relative_date_time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.new](#fn-definitiondefinitionsheetsrelative_date_timenew) constructor. + - `slider` (`list[obj]`): Set the `slider` field on the resulting object. When `null`, the `slider` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.new](#fn-definitiondefinitionsheetsslidernew) constructor. + - `text_area` (`list[obj]`): Set the `text_area` field on the resulting object. When `null`, the `text_area` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.new](#fn-definitiondefinitionsheetstext_areanew) constructor. + - `text_field` (`list[obj]`): Set the `text_field` field on the resulting object. When `null`, the `text_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.new](#fn-definitiondefinitionsheetstext_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_controls` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker + + + +### fn definition.sheets.filter_controls.date_time_picker.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.new` constructs a new object with attributes and blocks configured for the `date_time_picker` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_picker` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker.display_options + + + +### fn definition.sheets.filter_controls.date_time_picker.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickertitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker.display_options.title_options + + + +### fn definition.sheets.filter_controls.date_time_picker.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.dropdown + + + +### fn definition.sheets.filter_controls.dropdown.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.new` constructs a new object with attributes and blocks configured for the `dropdown` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.new](#fn-definitiondefinitionsheetsfilter_controlscascading_control_configurationnew) constructor. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.selectable_values.new](#fn-definitiondefinitionsheetsfilter_controlsselectable_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `dropdown` sub block. + + +## obj definition.sheets.filter_controls.dropdown.cascading_control_configuration + + + +### fn definition.sheets.filter_controls.dropdown.cascading_control_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration` +Terraform sub block. + + + +**Args**: + - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsfilter_controlsdropdownsource_controlsnew) constructor. + +**Returns**: + - An attribute object that represents the `cascading_control_configuration` sub block. + + +## obj definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls + + + +### fn definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls` +Terraform sub block. + + + +**Args**: + - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object. + - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowncascading_control_configurationcolumn_to_matchnew) constructor. + +**Returns**: + - An attribute object that represents the `source_controls` sub block. + + +## obj definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match + + + +### fn definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column_to_match` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options + + + +### fn definition.sheets.filter_controls.dropdown.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.select_all_options.new](#fn-definitiondefinitionsheetsfilter_controlsdropdownselect_all_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowntitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options.select_all_options + + + +### fn definition.sheets.filter_controls.dropdown.display_options.select_all_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `select_all_options` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options.title_options + + + +### fn definition.sheets.filter_controls.dropdown.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsdropdowndisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.dropdown.selectable_values + + + +### fn definition.sheets.filter_controls.dropdown.selectable_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.dropdown.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values` +Terraform sub block. + + + +**Args**: + - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selectable_values` sub block. + + +## obj definition.sheets.filter_controls.list + + + +### fn definition.sheets.filter_controls.list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.new` constructs a new object with attributes and blocks configured for the `list` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.new](#fn-definitiondefinitionsheetsfilter_controlscascading_control_configurationnew) constructor. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.selectable_values.new](#fn-definitiondefinitionsheetsfilter_controlsselectable_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `list` sub block. + + +## obj definition.sheets.filter_controls.list.cascading_control_configuration + + + +### fn definition.sheets.filter_controls.list.cascading_control_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration` +Terraform sub block. + + + +**Args**: + - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsfilter_controlslistsource_controlsnew) constructor. + +**Returns**: + - An attribute object that represents the `cascading_control_configuration` sub block. + + +## obj definition.sheets.filter_controls.list.cascading_control_configuration.source_controls + + + +### fn definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls` +Terraform sub block. + + + +**Args**: + - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object. + - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsfilter_controlslistcascading_control_configurationcolumn_to_matchnew) constructor. + +**Returns**: + - An attribute object that represents the `source_controls` sub block. + + +## obj definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match + + + +### fn definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column_to_match` sub block. + + +## obj definition.sheets.filter_controls.list.display_options + + + +### fn definition.sheets.filter_controls.list.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `search_options` (`list[obj]`): Set the `search_options` field on the resulting object. When `null`, the `search_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.search_options.new](#fn-definitiondefinitionsheetsfilter_controlslistsearch_optionsnew) constructor. + - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.select_all_options.new](#fn-definitiondefinitionsheetsfilter_controlslistselect_all_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlslisttitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.search_options + + + +### fn definition.sheets.filter_controls.list.display_options.search_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.search_options.new` constructs a new object with attributes and blocks configured for the `search_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `search_options` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.select_all_options + + + +### fn definition.sheets.filter_controls.list.display_options.select_all_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `select_all_options` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.title_options + + + +### fn definition.sheets.filter_controls.list.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.list.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlslistdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.list.selectable_values + + + +### fn definition.sheets.filter_controls.list.selectable_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.list.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values` +Terraform sub block. + + + +**Args**: + - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selectable_values` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time + + + +### fn definition.sheets.filter_controls.relative_date_time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.new` constructs a new object with attributes and blocks configured for the `relative_date_time` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `relative_date_time` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time.display_options + + + +### fn definition.sheets.filter_controls.relative_date_time.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timetitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time.display_options.title_options + + + +### fn definition.sheets.filter_controls.relative_date_time.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlsrelative_date_timedisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.relative_date_time.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.slider + + + +### fn definition.sheets.filter_controls.slider.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.new` constructs a new object with attributes and blocks configured for the `slider` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `maximum_value` (`number`): Set the `maximum_value` field on the resulting object. + - `minimum_value` (`number`): Set the `minimum_value` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `slider` sub block. + + +## obj definition.sheets.filter_controls.slider.display_options + + + +### fn definition.sheets.filter_controls.slider.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlsslidertitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.slider.display_options.title_options + + + +### fn definition.sheets.filter_controls.slider.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlssliderdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.slider.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.text_area + + + +### fn definition.sheets.filter_controls.text_area.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.new` constructs a new object with attributes and blocks configured for the `text_area` +Terraform sub block. + + + +**Args**: + - `delimiter` (`string`): Set the `delimiter` field on the resulting object. When `null`, the `delimiter` field will be omitted from the resulting object. + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `text_area` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options + + + +### fn definition.sheets.filter_controls.text_area.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_areaplaceholder_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_areatitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options.placeholder_options + + + +### fn definition.sheets.filter_controls.text_area.display_options.placeholder_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `placeholder_options` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options.title_options + + + +### fn definition.sheets.filter_controls.text_area.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlstext_areadisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_area.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.filter_controls.text_field + + + +### fn definition.sheets.filter_controls.text_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.new` constructs a new object with attributes and blocks configured for the `text_field` +Terraform sub block. + + + +**Args**: + - `filter_control_id` (`string`): Set the `filter_control_id` field on the resulting object. + - `source_filter_id` (`string`): Set the `source_filter_id` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.new](#fn-definitiondefinitionsheetsfilter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `text_field` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options + + + +### fn definition.sheets.filter_controls.text_field.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_fieldplaceholder_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.new](#fn-definitiondefinitionsheetsfilter_controlstext_fieldtitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options.placeholder_options + + + +### fn definition.sheets.filter_controls.text_field.display_options.placeholder_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `placeholder_options` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options.title_options + + + +### fn definition.sheets.filter_controls.text_field.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration + + + +### fn definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsfilter_controlstext_fielddisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.filter_controls.text_field.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.layouts + + + +### fn definition.sheets.layouts.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.new` constructs a new object with attributes and blocks configured for the `layouts` +Terraform sub block. + + + +**Args**: + - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.new](#fn-definitiondefinitionsheetsconfigurationnew) constructor. + +**Returns**: + - An attribute object that represents the `layouts` sub block. + + +## obj definition.sheets.layouts.configuration + + + +### fn definition.sheets.layouts.configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.new` constructs a new object with attributes and blocks configured for the `configuration` +Terraform sub block. + + + +**Args**: + - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsfree_form_layoutnew) constructor. + - `grid_layout` (`list[obj]`): Set the `grid_layout` field on the resulting object. When `null`, the `grid_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.new](#fn-definitiondefinitionsheetslayoutsgrid_layoutnew) constructor. + - `section_based_layout` (`list[obj]`): Set the `section_based_layout` field on the resulting object. When `null`, the `section_based_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.new](#fn-definitiondefinitionsheetslayoutssection_based_layoutnew) constructor. + +**Returns**: + - An attribute object that represents the `configuration` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout + + + +### fn definition.sheets.layouts.configuration.free_form_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor. + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `free_form_layout` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.canvas_size_options + + + +### fn definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutscreen_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options + + + +### fn definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. + +**Returns**: + - An attribute object that represents the `screen_canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `height` (`string`): Set the `height` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. + - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object. + - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object. + - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutbackground_stylenew) constructor. + - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutborder_stylenew) constructor. + - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutloading_animationnew) constructor. + - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutrendering_rulesnew) constructor. + - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutselected_border_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.background_style + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.background_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `background_style` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.border_style + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `border_style` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `loading_animation` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationfree_form_layoutelementsconfiguration_overridesnew) constructor. + +**Returns**: + - An attribute object that represents the `rendering_rules` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `configuration_overrides` sub block. + + +## obj definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style + + + +### fn definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_border_style` sub block. + + +## obj definition.sheets.layouts.configuration.grid_layout + + + +### fn definition.sheets.layouts.configuration.grid_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.new` constructs a new object with attributes and blocks configured for the `grid_layout` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor. + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `grid_layout` sub block. + + +## obj definition.sheets.layouts.configuration.grid_layout.canvas_size_options + + + +### fn definition.sheets.layouts.configuration.grid_layout.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationgrid_layoutscreen_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options + + + +### fn definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. + - `resize_option` (`string`): Set the `resize_option` field on the resulting object. + +**Returns**: + - An attribute object that represents the `screen_canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.grid_layout.elements + + + +### fn definition.sheets.layouts.configuration.grid_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.grid_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `column_index` (`number`): Set the `column_index` field on the resulting object. When `null`, the `column_index` field will be omitted from the resulting object. + - `column_span` (`number`): Set the `column_span` field on the resulting object. + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `row_index` (`number`): Set the `row_index` field on the resulting object. When `null`, the `row_index` field will be omitted from the resulting object. + - `row_span` (`number`): Set the `row_span` field on the resulting object. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.new` constructs a new object with attributes and blocks configured for the `section_based_layout` +Terraform sub block. + + + +**Args**: + - `body_sections` (`list[obj]`): Set the `body_sections` field on the resulting object. When `null`, the `body_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationbody_sectionsnew) constructor. + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationcanvas_size_optionsnew) constructor. + - `footer_sections` (`list[obj]`): Set the `footer_sections` field on the resulting object. When `null`, the `footer_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationfooter_sectionsnew) constructor. + - `header_sections` (`list[obj]`): Set the `header_sections` field on the resulting object. When `null`, the `header_sections` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.new](#fn-definitiondefinitionsheetslayoutsconfigurationheader_sectionsnew) constructor. + +**Returns**: + - An attribute object that represents the `section_based_layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.new` constructs a new object with attributes and blocks configured for the `body_sections` +Terraform sub block. + + + +**Args**: + - `section_id` (`string`): Set the `section_id` field on the resulting object. + - `content` (`list[obj]`): Set the `content` field on the resulting object. When `null`, the `content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutcontentnew) constructor. + - `page_break_configuration` (`list[obj]`): Set the `page_break_configuration` field on the resulting object. When `null`, the `page_break_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutpage_break_configurationnew) constructor. + - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor. + +**Returns**: + - An attribute object that represents the `body_sections` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.new` constructs a new object with attributes and blocks configured for the `content` +Terraform sub block. + + + +**Args**: + - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionslayoutnew) constructor. + +**Returns**: + - An attribute object that represents the `content` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.new` constructs a new object with attributes and blocks configured for the `layout` +Terraform sub block. + + + +**Args**: + - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentfree_form_layoutnew) constructor. + +**Returns**: + - An attribute object that represents the `layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout` +Terraform sub block. + + + +**Args**: + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `free_form_layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `height` (`string`): Set the `height` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. + - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object. + - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object. + - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutbackground_stylenew) constructor. + - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutborder_stylenew) constructor. + - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutloading_animationnew) constructor. + - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutrendering_rulesnew) constructor. + - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutselected_border_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `background_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `loading_animation` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionscontentlayoutfree_form_layoutelementsconfiguration_overridesnew) constructor. + +**Returns**: + - An attribute object that represents the `rendering_rules` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `configuration_overrides` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.content.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.new` constructs a new object with attributes and blocks configured for the `page_break_configuration` +Terraform sub block. + + + +**Args**: + - `after` (`list[obj]`): Set the `after` field on the resulting object. When `null`, the `after` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionsafternew) constructor. + +**Returns**: + - An attribute object that represents the `page_break_configuration` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.page_break_configuration.after.new` constructs a new object with attributes and blocks configured for the `after` +Terraform sub block. + + + +**Args**: + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `after` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.new` constructs a new object with attributes and blocks configured for the `style` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutbody_sectionspaddingnew) constructor. + +**Returns**: + - An attribute object that represents the `style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding + + + +### fn definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.body_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding` +Terraform sub block. + + + +**Args**: + - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object. + - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object. + - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object. + - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `padding` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options + + + +### fn definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `paper_canvas_size_options` (`list[obj]`): Set the `paper_canvas_size_options` field on the resulting object. When `null`, the `paper_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutpaper_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options + + + +### fn definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `paper_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `paper_orientation` (`string`): Set the `paper_orientation` field on the resulting object. When `null`, the `paper_orientation` field will be omitted from the resulting object. + - `paper_size` (`string`): Set the `paper_size` field on the resulting object. When `null`, the `paper_size` field will be omitted from the resulting object. + - `paper_margin` (`list[obj]`): Set the `paper_margin` field on the resulting object. When `null`, the `paper_margin` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutcanvas_size_optionspaper_marginnew) constructor. + +**Returns**: + - An attribute object that represents the `paper_canvas_size_options` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin + + + +### fn definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.canvas_size_options.paper_canvas_size_options.paper_margin.new` constructs a new object with attributes and blocks configured for the `paper_margin` +Terraform sub block. + + + +**Args**: + - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object. + - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object. + - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object. + - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `paper_margin` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.new` constructs a new object with attributes and blocks configured for the `footer_sections` +Terraform sub block. + + + +**Args**: + - `section_id` (`string`): Set the `section_id` field on the resulting object. + - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutlayoutnew) constructor. + - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor. + +**Returns**: + - An attribute object that represents the `footer_sections` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.new` constructs a new object with attributes and blocks configured for the `layout` +Terraform sub block. + + + +**Args**: + - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionsfree_form_layoutnew) constructor. + +**Returns**: + - An attribute object that represents the `layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout` +Terraform sub block. + + + +**Args**: + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `free_form_layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `height` (`string`): Set the `height` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. + - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object. + - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object. + - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutbackground_stylenew) constructor. + - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutborder_stylenew) constructor. + - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutloading_animationnew) constructor. + - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutrendering_rulesnew) constructor. + - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutselected_border_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `background_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `loading_animation` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionslayoutfree_form_layoutelementsconfiguration_overridesnew) constructor. + +**Returns**: + - An attribute object that represents the `rendering_rules` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `configuration_overrides` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.new` constructs a new object with attributes and blocks configured for the `style` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutfooter_sectionspaddingnew) constructor. + +**Returns**: + - An attribute object that represents the `style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding + + + +### fn definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.footer_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding` +Terraform sub block. + + + +**Args**: + - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object. + - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object. + - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object. + - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `padding` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.new` constructs a new object with attributes and blocks configured for the `header_sections` +Terraform sub block. + + + +**Args**: + - `section_id` (`string`): Set the `section_id` field on the resulting object. + - `layout` (`list[obj]`): Set the `layout` field on the resulting object. When `null`, the `layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutlayoutnew) constructor. + - `style` (`list[obj]`): Set the `style` field on the resulting object. When `null`, the `style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutstylenew) constructor. + +**Returns**: + - An attribute object that represents the `header_sections` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.new` constructs a new object with attributes and blocks configured for the `layout` +Terraform sub block. + + + +**Args**: + - `free_form_layout` (`list[obj]`): Set the `free_form_layout` field on the resulting object. When `null`, the `free_form_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionsfree_form_layoutnew) constructor. + +**Returns**: + - An attribute object that represents the `layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.new` constructs a new object with attributes and blocks configured for the `free_form_layout` +Terraform sub block. + + + +**Args**: + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `free_form_layout` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `height` (`string`): Set the `height` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. + - `x_axis_location` (`string`): Set the `x_axis_location` field on the resulting object. + - `y_axis_location` (`string`): Set the `y_axis_location` field on the resulting object. + - `background_style` (`list[obj]`): Set the `background_style` field on the resulting object. When `null`, the `background_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutbackground_stylenew) constructor. + - `border_style` (`list[obj]`): Set the `border_style` field on the resulting object. When `null`, the `border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutborder_stylenew) constructor. + - `loading_animation` (`list[obj]`): Set the `loading_animation` field on the resulting object. When `null`, the `loading_animation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutloading_animationnew) constructor. + - `rendering_rules` (`list[obj]`): Set the `rendering_rules` field on the resulting object. When `null`, the `rendering_rules` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutrendering_rulesnew) constructor. + - `selected_border_style` (`list[obj]`): Set the `selected_border_style` field on the resulting object. When `null`, the `selected_border_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutselected_border_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.background_style.new` constructs a new object with attributes and blocks configured for the `background_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `background_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.border_style.new` constructs a new object with attributes and blocks configured for the `border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.loading_animation.new` constructs a new object with attributes and blocks configured for the `loading_animation` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `loading_animation` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.new` constructs a new object with attributes and blocks configured for the `rendering_rules` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `configuration_overrides` (`list[obj]`): Set the `configuration_overrides` field on the resulting object. When `null`, the `configuration_overrides` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionslayoutfree_form_layoutelementsconfiguration_overridesnew) constructor. + +**Returns**: + - An attribute object that represents the `rendering_rules` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.rendering_rules.configuration_overrides.new` constructs a new object with attributes and blocks configured for the `configuration_overrides` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `configuration_overrides` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.layout.free_form_layout.elements.selected_border_style.new` constructs a new object with attributes and blocks configured for the `selected_border_style` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_border_style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.style + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.new` constructs a new object with attributes and blocks configured for the `style` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `padding` (`list[obj]`): Set the `padding` field on the resulting object. When `null`, the `padding` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding.new](#fn-definitiondefinitionsheetslayoutsconfigurationsection_based_layoutheader_sectionspaddingnew) constructor. + +**Returns**: + - An attribute object that represents the `style` sub block. + + +## obj definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding + + + +### fn definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.layouts.configuration.section_based_layout.header_sections.style.padding.new` constructs a new object with attributes and blocks configured for the `padding` +Terraform sub block. + + + +**Args**: + - `bottom` (`string`): Set the `bottom` field on the resulting object. When `null`, the `bottom` field will be omitted from the resulting object. + - `left` (`string`): Set the `left` field on the resulting object. When `null`, the `left` field will be omitted from the resulting object. + - `right` (`string`): Set the `right` field on the resulting object. When `null`, the `right` field will be omitted from the resulting object. + - `top` (`string`): Set the `top` field on the resulting object. When `null`, the `top` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `padding` sub block. + + +## obj definition.sheets.parameter_controls + + + +### fn definition.sheets.parameter_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.new` constructs a new object with attributes and blocks configured for the `parameter_controls` +Terraform sub block. + + + +**Args**: + - `date_time_picker` (`list[obj]`): Set the `date_time_picker` field on the resulting object. When `null`, the `date_time_picker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.new](#fn-definitiondefinitionsheetsdate_time_pickernew) constructor. + - `dropdown` (`list[obj]`): Set the `dropdown` field on the resulting object. When `null`, the `dropdown` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.new](#fn-definitiondefinitionsheetsdropdownnew) constructor. + - `list` (`list[obj]`): Set the `list` field on the resulting object. When `null`, the `list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.new](#fn-definitiondefinitionsheetslistnew) constructor. + - `slider` (`list[obj]`): Set the `slider` field on the resulting object. When `null`, the `slider` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.new](#fn-definitiondefinitionsheetsslidernew) constructor. + - `text_area` (`list[obj]`): Set the `text_area` field on the resulting object. When `null`, the `text_area` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.new](#fn-definitiondefinitionsheetstext_areanew) constructor. + - `text_field` (`list[obj]`): Set the `text_field` field on the resulting object. When `null`, the `text_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.new](#fn-definitiondefinitionsheetstext_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_controls` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker + + + +### fn definition.sheets.parameter_controls.date_time_picker.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.new` constructs a new object with attributes and blocks configured for the `date_time_picker` +Terraform sub block. + + + +**Args**: + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_picker` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker.display_options + + + +### fn definition.sheets.parameter_controls.date_time_picker.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickertitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options + + + +### fn definition.sheets.parameter_controls.date_time_picker.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlsdate_time_pickerdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.date_time_picker.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.parameter_controls.dropdown + + + +### fn definition.sheets.parameter_controls.dropdown.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.new` constructs a new object with attributes and blocks configured for the `dropdown` +Terraform sub block. + + + +**Args**: + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.new](#fn-definitiondefinitionsheetsparameter_controlscascading_control_configurationnew) constructor. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.new](#fn-definitiondefinitionsheetsparameter_controlsselectable_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `dropdown` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration + + + +### fn definition.sheets.parameter_controls.dropdown.cascading_control_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration` +Terraform sub block. + + + +**Args**: + - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownsource_controlsnew) constructor. + +**Returns**: + - An attribute object that represents the `cascading_control_configuration` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls + + + +### fn definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls` +Terraform sub block. + + + +**Args**: + - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object. + - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowncascading_control_configurationcolumn_to_matchnew) constructor. + +**Returns**: + - An attribute object that represents the `source_controls` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match + + + +### fn definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column_to_match` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.select_all_options.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownselect_all_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowntitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options.select_all_options + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.select_all_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `select_all_options` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options.title_options + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlsdropdowndisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.selectable_values + + + +### fn definition.sheets.parameter_controls.dropdown.selectable_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values` +Terraform sub block. + + + +**Args**: + - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object. + - `link_to_data_set_column` (`list[obj]`): Set the `link_to_data_set_column` field on the resulting object. When `null`, the `link_to_data_set_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column.new](#fn-definitiondefinitionsheetsparameter_controlsdropdownlink_to_data_set_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `selectable_values` sub block. + + +## obj definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column + + + +### fn definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.dropdown.selectable_values.link_to_data_set_column.new` constructs a new object with attributes and blocks configured for the `link_to_data_set_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `link_to_data_set_column` sub block. + + +## obj definition.sheets.parameter_controls.list + + + +### fn definition.sheets.parameter_controls.list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.new` constructs a new object with attributes and blocks configured for the `list` +Terraform sub block. + + + +**Args**: + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `cascading_control_configuration` (`list[obj]`): Set the `cascading_control_configuration` field on the resulting object. When `null`, the `cascading_control_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.new](#fn-definitiondefinitionsheetsparameter_controlscascading_control_configurationnew) constructor. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + - `selectable_values` (`list[obj]`): Set the `selectable_values` field on the resulting object. When `null`, the `selectable_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.new](#fn-definitiondefinitionsheetsparameter_controlsselectable_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `list` sub block. + + +## obj definition.sheets.parameter_controls.list.cascading_control_configuration + + + +### fn definition.sheets.parameter_controls.list.cascading_control_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.new` constructs a new object with attributes and blocks configured for the `cascading_control_configuration` +Terraform sub block. + + + +**Args**: + - `source_controls` (`list[obj]`): Set the `source_controls` field on the resulting object. When `null`, the `source_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.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.new](#fn-definitiondefinitionsheetsparameter_controlslistsource_controlsnew) constructor. + +**Returns**: + - An attribute object that represents the `cascading_control_configuration` sub block. + + +## obj definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls + + + +### fn definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.new` constructs a new object with attributes and blocks configured for the `source_controls` +Terraform sub block. + + + +**Args**: + - `source_sheet_control_id` (`string`): Set the `source_sheet_control_id` field on the resulting object. When `null`, the `source_sheet_control_id` field will be omitted from the resulting object. + - `column_to_match` (`list[obj]`): Set the `column_to_match` field on the resulting object. When `null`, the `column_to_match` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match.new](#fn-definitiondefinitionsheetsparameter_controlslistcascading_control_configurationcolumn_to_matchnew) constructor. + +**Returns**: + - An attribute object that represents the `source_controls` sub block. + + +## obj definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match + + + +### fn definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.cascading_control_configuration.source_controls.column_to_match.new` constructs a new object with attributes and blocks configured for the `column_to_match` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column_to_match` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options + + + +### fn definition.sheets.parameter_controls.list.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `search_options` (`list[obj]`): Set the `search_options` field on the resulting object. When `null`, the `search_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.search_options.new](#fn-definitiondefinitionsheetsparameter_controlslistsearch_optionsnew) constructor. + - `select_all_options` (`list[obj]`): Set the `select_all_options` field on the resulting object. When `null`, the `select_all_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.select_all_options.new](#fn-definitiondefinitionsheetsparameter_controlslistselect_all_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlslisttitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.search_options + + + +### fn definition.sheets.parameter_controls.list.display_options.search_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.search_options.new` constructs a new object with attributes and blocks configured for the `search_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `search_options` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.select_all_options + + + +### fn definition.sheets.parameter_controls.list.display_options.select_all_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.select_all_options.new` constructs a new object with attributes and blocks configured for the `select_all_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `select_all_options` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.title_options + + + +### fn definition.sheets.parameter_controls.list.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlslistdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.parameter_controls.list.selectable_values + + + +### fn definition.sheets.parameter_controls.list.selectable_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.new` constructs a new object with attributes and blocks configured for the `selectable_values` +Terraform sub block. + + + +**Args**: + - `values` (`list`): Set the `values` field on the resulting object. When `null`, the `values` field will be omitted from the resulting object. + - `link_to_data_set_column` (`list[obj]`): Set the `link_to_data_set_column` field on the resulting object. When `null`, the `link_to_data_set_column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column.new](#fn-definitiondefinitionsheetsparameter_controlslistlink_to_data_set_columnnew) constructor. + +**Returns**: + - An attribute object that represents the `selectable_values` sub block. + + +## obj definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column + + + +### fn definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.list.selectable_values.link_to_data_set_column.new` constructs a new object with attributes and blocks configured for the `link_to_data_set_column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `link_to_data_set_column` sub block. + + +## obj definition.sheets.parameter_controls.slider + + + +### fn definition.sheets.parameter_controls.slider.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.new` constructs a new object with attributes and blocks configured for the `slider` +Terraform sub block. + + + +**Args**: + - `maximum_value` (`number`): Set the `maximum_value` field on the resulting object. + - `minimum_value` (`number`): Set the `minimum_value` field on the resulting object. + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `slider` sub block. + + +## obj definition.sheets.parameter_controls.slider.display_options + + + +### fn definition.sheets.parameter_controls.slider.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlsslidertitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.slider.display_options.title_options + + + +### fn definition.sheets.parameter_controls.slider.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlssliderdisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.slider.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.parameter_controls.text_area + + + +### fn definition.sheets.parameter_controls.text_area.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.new` constructs a new object with attributes and blocks configured for the `text_area` +Terraform sub block. + + + +**Args**: + - `delimiter` (`string`): Set the `delimiter` field on the resulting object. When `null`, the `delimiter` field will be omitted from the resulting object. + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `text_area` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options + + + +### fn definition.sheets.parameter_controls.text_area.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_areaplaceholder_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_areatitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options.placeholder_options + + + +### fn definition.sheets.parameter_controls.text_area.display_options.placeholder_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `placeholder_options` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options.title_options + + + +### fn definition.sheets.parameter_controls.text_area.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlstext_areadisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_area.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.parameter_controls.text_field + + + +### fn definition.sheets.parameter_controls.text_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.new` constructs a new object with attributes and blocks configured for the `text_field` +Terraform sub block. + + + +**Args**: + - `parameter_control_id` (`string`): Set the `parameter_control_id` field on the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `display_options` (`list[obj]`): Set the `display_options` field on the resulting object. When `null`, the `display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.new](#fn-definitiondefinitionsheetsparameter_controlsdisplay_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `text_field` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options + + + +### fn definition.sheets.parameter_controls.text_field.display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.new` constructs a new object with attributes and blocks configured for the `display_options` +Terraform sub block. + + + +**Args**: + - `placeholder_options` (`list[obj]`): Set the `placeholder_options` field on the resulting object. When `null`, the `placeholder_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.placeholder_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_fieldplaceholder_optionsnew) constructor. + - `title_options` (`list[obj]`): Set the `title_options` field on the resulting object. When `null`, the `title_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.new](#fn-definitiondefinitionsheetsparameter_controlstext_fieldtitle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `display_options` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options.placeholder_options + + + +### fn definition.sheets.parameter_controls.text_field.display_options.placeholder_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.placeholder_options.new` constructs a new object with attributes and blocks configured for the `placeholder_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `placeholder_options` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options.title_options + + + +### fn definition.sheets.parameter_controls.text_field.display_options.title_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.new` constructs a new object with attributes and blocks configured for the `title_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title_options` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration + + + +### fn definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsparameter_controlstext_fielddisplay_optionstitle_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size + + + +### fn definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight + + + +### fn definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.parameter_controls.text_field.display_options.title_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.sheet_control_layouts + + + +### fn definition.sheets.sheet_control_layouts.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.new` constructs a new object with attributes and blocks configured for the `sheet_control_layouts` +Terraform sub block. + + + +**Args**: + - `configuration` (`list[obj]`): Set the `configuration` field on the resulting object. When `null`, the `configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.new](#fn-definitiondefinitionsheetsconfigurationnew) constructor. + +**Returns**: + - An attribute object that represents the `sheet_control_layouts` sub block. + + +## obj definition.sheets.sheet_control_layouts.configuration + + + +### fn definition.sheets.sheet_control_layouts.configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.new` constructs a new object with attributes and blocks configured for the `configuration` +Terraform sub block. + + + +**Args**: + - `grid_layout` (`list[obj]`): Set the `grid_layout` field on the resulting object. When `null`, the `grid_layout` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.new](#fn-definitiondefinitionsheetssheet_control_layoutsgrid_layoutnew) constructor. + +**Returns**: + - An attribute object that represents the `configuration` sub block. + + +## obj definition.sheets.sheet_control_layouts.configuration.grid_layout + + + +### fn definition.sheets.sheet_control_layouts.configuration.grid_layout.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.new` constructs a new object with attributes and blocks configured for the `grid_layout` +Terraform sub block. + + + +**Args**: + - `canvas_size_options` (`list[obj]`): Set the `canvas_size_options` field on the resulting object. When `null`, the `canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationcanvas_size_optionsnew) constructor. + - `elements` (`list[obj]`): Set the `elements` field on the resulting object. When `null`, the `elements` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.elements.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationelementsnew) constructor. + +**Returns**: + - An attribute object that represents the `grid_layout` sub block. + + +## obj definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options + + + +### fn definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.new` constructs a new object with attributes and blocks configured for the `canvas_size_options` +Terraform sub block. + + + +**Args**: + - `screen_canvas_size_options` (`list[obj]`): Set the `screen_canvas_size_options` field on the resulting object. When `null`, the `screen_canvas_size_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new](#fn-definitiondefinitionsheetssheet_control_layoutsconfigurationgrid_layoutscreen_canvas_size_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `canvas_size_options` sub block. + + +## obj definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options + + + +### fn definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.canvas_size_options.screen_canvas_size_options.new` constructs a new object with attributes and blocks configured for the `screen_canvas_size_options` +Terraform sub block. + + + +**Args**: + - `optimized_view_port_width` (`string`): Set the `optimized_view_port_width` field on the resulting object. + - `resize_option` (`string`): Set the `resize_option` field on the resulting object. + +**Returns**: + - An attribute object that represents the `screen_canvas_size_options` sub block. + + +## obj definition.sheets.sheet_control_layouts.configuration.grid_layout.elements + + + +### fn definition.sheets.sheet_control_layouts.configuration.grid_layout.elements.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.sheet_control_layouts.configuration.grid_layout.elements.new` constructs a new object with attributes and blocks configured for the `elements` +Terraform sub block. + + + +**Args**: + - `column_index` (`number`): Set the `column_index` field on the resulting object. When `null`, the `column_index` field will be omitted from the resulting object. + - `column_span` (`number`): Set the `column_span` field on the resulting object. + - `element_id` (`string`): Set the `element_id` field on the resulting object. + - `element_type` (`string`): Set the `element_type` field on the resulting object. + - `row_index` (`number`): Set the `row_index` field on the resulting object. When `null`, the `row_index` field will be omitted from the resulting object. + - `row_span` (`number`): Set the `row_span` field on the resulting object. + +**Returns**: + - An attribute object that represents the `elements` sub block. + + +## obj definition.sheets.text_boxes + + + +### fn definition.sheets.text_boxes.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.text_boxes.new` constructs a new object with attributes and blocks configured for the `text_boxes` +Terraform sub block. + + + +**Args**: + - `content` (`string`): Set the `content` field on the resulting object. When `null`, the `content` field will be omitted from the resulting object. + - `sheet_text_box_id` (`string`): Set the `sheet_text_box_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `text_boxes` sub block. + + +## obj definition.sheets.visuals + + + +### fn definition.sheets.visuals.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.new` constructs a new object with attributes and blocks configured for the `visuals` +Terraform sub block. + + + +**Args**: + - `bar_chart_visual` (`list[obj]`): Set the `bar_chart_visual` field on the resulting object. When `null`, the `bar_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.new](#fn-definitiondefinitionsheetsbar_chart_visualnew) constructor. + - `box_plot_visual` (`list[obj]`): Set the `box_plot_visual` field on the resulting object. When `null`, the `box_plot_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.new](#fn-definitiondefinitionsheetsbox_plot_visualnew) constructor. + - `combo_chart_visual` (`list[obj]`): Set the `combo_chart_visual` field on the resulting object. When `null`, the `combo_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.new](#fn-definitiondefinitionsheetscombo_chart_visualnew) constructor. + - `custom_content_visual` (`list[obj]`): Set the `custom_content_visual` field on the resulting object. When `null`, the `custom_content_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.new](#fn-definitiondefinitionsheetscustom_content_visualnew) constructor. + - `empty_visual` (`list[obj]`): Set the `empty_visual` field on the resulting object. When `null`, the `empty_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.new](#fn-definitiondefinitionsheetsempty_visualnew) constructor. + - `filled_map_visual` (`list[obj]`): Set the `filled_map_visual` field on the resulting object. When `null`, the `filled_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.new](#fn-definitiondefinitionsheetsfilled_map_visualnew) constructor. + - `funnel_chart_visual` (`list[obj]`): Set the `funnel_chart_visual` field on the resulting object. When `null`, the `funnel_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.new](#fn-definitiondefinitionsheetsfunnel_chart_visualnew) constructor. + - `gauge_chart_visual` (`list[obj]`): Set the `gauge_chart_visual` field on the resulting object. When `null`, the `gauge_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.new](#fn-definitiondefinitionsheetsgauge_chart_visualnew) constructor. + - `geospatial_map_visual` (`list[obj]`): Set the `geospatial_map_visual` field on the resulting object. When `null`, the `geospatial_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.new](#fn-definitiondefinitionsheetsgeospatial_map_visualnew) constructor. + - `heat_map_visual` (`list[obj]`): Set the `heat_map_visual` field on the resulting object. When `null`, the `heat_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.new](#fn-definitiondefinitionsheetsheat_map_visualnew) constructor. + - `histogram_visual` (`list[obj]`): Set the `histogram_visual` field on the resulting object. When `null`, the `histogram_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.new](#fn-definitiondefinitionsheetshistogram_visualnew) constructor. + - `insight_visual` (`list[obj]`): Set the `insight_visual` field on the resulting object. When `null`, the `insight_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.new](#fn-definitiondefinitionsheetsinsight_visualnew) constructor. + - `kpi_visual` (`list[obj]`): Set the `kpi_visual` field on the resulting object. When `null`, the `kpi_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.new](#fn-definitiondefinitionsheetskpi_visualnew) constructor. + - `line_chart_visual` (`list[obj]`): Set the `line_chart_visual` field on the resulting object. When `null`, the `line_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.new](#fn-definitiondefinitionsheetsline_chart_visualnew) constructor. + - `pie_chart_visual` (`list[obj]`): Set the `pie_chart_visual` field on the resulting object. When `null`, the `pie_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.new](#fn-definitiondefinitionsheetspie_chart_visualnew) constructor. + - `pivot_table_visual` (`list[obj]`): Set the `pivot_table_visual` field on the resulting object. When `null`, the `pivot_table_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.new](#fn-definitiondefinitionsheetspivot_table_visualnew) constructor. + - `radar_chart_visual` (`list[obj]`): Set the `radar_chart_visual` field on the resulting object. When `null`, the `radar_chart_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.new](#fn-definitiondefinitionsheetsradar_chart_visualnew) constructor. + - `sankey_diagram_visual` (`list[obj]`): Set the `sankey_diagram_visual` field on the resulting object. When `null`, the `sankey_diagram_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.new](#fn-definitiondefinitionsheetssankey_diagram_visualnew) constructor. + - `scatter_plot_visual` (`list[obj]`): Set the `scatter_plot_visual` field on the resulting object. When `null`, the `scatter_plot_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.new](#fn-definitiondefinitionsheetsscatter_plot_visualnew) constructor. + - `table_visual` (`list[obj]`): Set the `table_visual` field on the resulting object. When `null`, the `table_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.new](#fn-definitiondefinitionsheetstable_visualnew) constructor. + - `tree_map_visual` (`list[obj]`): Set the `tree_map_visual` field on the resulting object. When `null`, the `tree_map_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.new](#fn-definitiondefinitionsheetstree_map_visualnew) constructor. + - `waterfall_visual` (`list[obj]`): Set the `waterfall_visual` field on the resulting object. When `null`, the `waterfall_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.new](#fn-definitiondefinitionsheetswaterfall_visualnew) constructor. + - `word_cloud_visual` (`list[obj]`): Set the `word_cloud_visual` field on the resulting object. When `null`, the `word_cloud_visual` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.new](#fn-definitiondefinitionsheetsword_cloud_visualnew) constructor. + +**Returns**: + - An attribute object that represents the `visuals` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual + + + +### fn definition.sheets.visuals.bar_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.new` constructs a new object with attributes and blocks configured for the `bar_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `bar_chart_visual` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `bars_arrangement` (`string`): Set the `bars_arrangement` field on the resulting object. When `null`, the `bars_arrangement` field will be omitted from the resulting object. + - `orientation` (`string`): Set the `orientation` field on the resulting object. When `null`, the `orientation` field will be omitted from the resulting object. + - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcategory_axisnew) constructor. + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcategory_label_optionsnew) constructor. + - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolor_label_optionsnew) constructor. + - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcontribution_analysis_defaultsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visuallegendnew) constructor. + - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualreference_linesnew) constructor. + - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualsmall_multiples_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualtooltipnew) constructor. + - `value_axis` (`list[obj]`): Set the `value_axis` field on the resulting object. When `null`, the `value_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvalue_axisnew) constructor. + - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvalue_label_optionsnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `color_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults` +Terraform sub block. + + + +**Args**: + - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object. + - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcontributor_dimensionsnew) constructor. + +**Returns**: + - An attribute object that represents the `contribution_analysis_defaults` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `contributor_dimensions` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `bar_chart_aggregated_field_wells` (`list[obj]`): Set the `bar_chart_aggregated_field_wells` field on the resulting object. When `null`, the `bar_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationbar_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `bar_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellscolorsnew) constructor. + - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `bar_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_wellsbar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.field_wells.bar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines` +Terraform sub block. + + + +**Args**: + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_configurationnew) constructor. + - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationlabel_configurationnew) constructor. + - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationstyle_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `reference_lines` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object. + - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor. + - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration` +Terraform sub block. + + + +**Args**: + - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor. + - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `calculation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `measure_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `static_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object. + - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object. + - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesfont_configurationnew) constructor. + - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_label_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration` +Terraform sub block. + + + +**Args**: + - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `style_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options` +Terraform sub block. + + + +**Args**: + - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object. + - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object. + - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationpanel_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object. + - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object. + - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object. + - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object. + - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object. + - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object. + - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `panel_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcategory_sortnew) constructor. + - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_items_limitnew) constructor. + - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_sortnew) constructor. + - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor. + - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsmall_multiples_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `color_items_limit` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `color_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `small_multiples_limit_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.new` constructs a new object with attributes and blocks configured for the `value_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `value_axis` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.subtitle + + + +### fn definition.sheets.visuals.bar_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.bar_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.title + + + +### fn definition.sheets.visuals.bar_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsbar_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.bar_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.bar_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.bar_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.box_plot_visual + + + +### fn definition.sheets.visuals.box_plot_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.new` constructs a new object with attributes and blocks configured for the `box_plot_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `box_plot_visual` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions + + + +### fn definition.sheets.visuals.box_plot_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `box_plot_options` (`list[obj]`): Set the `box_plot_options` field on the resulting object. When `null`, the `box_plot_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualbox_plot_optionsnew) constructor. + - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcategory_axisnew) constructor. + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcategory_label_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visuallegendnew) constructor. + - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualprimary_y_axis_display_optionsnew) constructor. + - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualprimary_y_axis_label_optionsnew) constructor. + - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualreference_linesnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.new` constructs a new object with attributes and blocks configured for the `box_plot_options` +Terraform sub block. + + + +**Args**: + - `all_data_points_visibility` (`string`): Set the `all_data_points_visibility` field on the resulting object. When `null`, the `all_data_points_visibility` field will be omitted from the resulting object. + - `outlier_visibility` (`string`): Set the `outlier_visibility` field on the resulting object. When `null`, the `outlier_visibility` field will be omitted from the resulting object. + - `style_options` (`list[obj]`): Set the `style_options` field on the resulting object. When `null`, the `style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationstyle_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `box_plot_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.box_plot_options.style_options.new` constructs a new object with attributes and blocks configured for the `style_options` +Terraform sub block. + + + +**Args**: + - `fill_style` (`string`): Set the `fill_style` field on the resulting object. When `null`, the `fill_style` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `style_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `box_plot_aggregated_field_wells` (`list[obj]`): Set the `box_plot_aggregated_field_wells` field on the resulting object. When `null`, the `box_plot_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationbox_plot_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `box_plot_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsgroup_bynew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `box_plot_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `group_by` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_wellsbox_plot_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.field_wells.box_plot_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines` +Terraform sub block. + + + +**Args**: + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationdata_configurationnew) constructor. + - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationlabel_configurationnew) constructor. + - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationstyle_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `reference_lines` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object. + - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdynamic_configurationnew) constructor. + - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesstatic_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration` +Terraform sub block. + + + +**Args**: + - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor. + - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `calculation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `measure_aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `static_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object. + - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object. + - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linescustom_label_configurationnew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesfont_configurationnew) constructor. + - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_linesvalue_label_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_label_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration` +Terraform sub block. + + + +**Args**: + - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `style_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcategory_sortnew) constructor. + - `pagination_configuration` (`list[obj]`): Set the `pagination_configuration` field on the resulting object. When `null`, the `pagination_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationpagination_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.sort_configuration.pagination_configuration.new` constructs a new object with attributes and blocks configured for the `pagination_configuration` +Terraform sub block. + + + +**Args**: + - `page_number` (`number`): Set the `page_number` field on the resulting object. + - `page_size` (`number`): Set the `page_size` field on the resulting object. + +**Returns**: + - An attribute object that represents the `pagination_configuration` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.subtitle + + + +### fn definition.sheets.visuals.box_plot_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.box_plot_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.title + + + +### fn definition.sheets.visuals.box_plot_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsbox_plot_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.box_plot_visual.title.format_text + + + +### fn definition.sheets.visuals.box_plot_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.box_plot_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual + + + +### fn definition.sheets.visuals.combo_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.new` constructs a new object with attributes and blocks configured for the `combo_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `combo_chart_visual` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `bars_arrangement` (`string`): Set the `bars_arrangement` field on the resulting object. When `null`, the `bars_arrangement` field will be omitted from the resulting object. + - `bar_data_labels` (`list[obj]`): Set the `bar_data_labels` field on the resulting object. When `null`, the `bar_data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualbar_data_labelsnew) constructor. + - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcategory_axisnew) constructor. + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcategory_label_optionsnew) constructor. + - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolor_label_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visuallegendnew) constructor. + - `line_data_labels` (`list[obj]`): Set the `line_data_labels` field on the resulting object. When `null`, the `line_data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualline_data_labelsnew) constructor. + - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualprimary_y_axis_display_optionsnew) constructor. + - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualprimary_y_axis_label_optionsnew) constructor. + - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualreference_linesnew) constructor. + - `secondary_y_axis_display_options` (`list[obj]`): Set the `secondary_y_axis_display_options` field on the resulting object. When `null`, the `secondary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsecondary_y_axis_display_optionsnew) constructor. + - `secondary_y_axis_label_options` (`list[obj]`): Set the `secondary_y_axis_label_options` field on the resulting object. When `null`, the `secondary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsecondary_y_axis_label_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.new` constructs a new object with attributes and blocks configured for the `bar_data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `bar_data_labels` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationbar_data_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.bar_data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `color_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `combo_chart_aggregated_field_wells` (`list[obj]`): Set the `combo_chart_aggregated_field_wells` field on the resulting object. When `null`, the `combo_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcombo_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `combo_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `bar_values` (`list[obj]`): Set the `bar_values` field on the resulting object. When `null`, the `bar_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellsbar_valuesnew) constructor. + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscolorsnew) constructor. + - `line_values` (`list[obj]`): Set the `line_values` field on the resulting object. When `null`, the `line_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellsline_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `combo_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.new` constructs a new object with attributes and blocks configured for the `bar_values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `bar_values` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsbar_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.bar_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.new` constructs a new object with attributes and blocks configured for the `line_values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `line_values` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_wellscombo_chart_aggregated_field_wellsline_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.field_wells.combo_chart_aggregated_field_wells.line_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.new` constructs a new object with attributes and blocks configured for the `line_data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `line_data_labels` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationline_data_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.line_data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines` +Terraform sub block. + + + +**Args**: + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_configurationnew) constructor. + - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationlabel_configurationnew) constructor. + - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationstyle_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `reference_lines` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object. + - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor. + - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration` +Terraform sub block. + + + +**Args**: + - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor. + - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `calculation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `measure_aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `static_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object. + - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object. + - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesfont_configurationnew) constructor. + - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_label_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration` +Terraform sub block. + + + +**Args**: + - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `style_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `secondary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `secondary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcategory_sortnew) constructor. + - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_items_limitnew) constructor. + - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `color_items_limit` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `color_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.subtitle + + + +### fn definition.sheets.visuals.combo_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.combo_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.title + + + +### fn definition.sheets.visuals.combo_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualscombo_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.combo_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.combo_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.combo_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.custom_content_visual + + + +### fn definition.sheets.visuals.custom_content_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.new` constructs a new object with attributes and blocks configured for the `custom_content_visual` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `custom_content_visual` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions + + + +### fn definition.sheets.visuals.custom_content_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.chart_configuration + + + +### fn definition.sheets.visuals.custom_content_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `content_type` (`string`): Set the `content_type` field on the resulting object. When `null`, the `content_type` field will be omitted from the resulting object. + - `content_url` (`string`): Set the `content_url` field on the resulting object. When `null`, the `content_url` field will be omitted from the resulting object. + - `image_scaling` (`string`): Set the `image_scaling` field on the resulting object. When `null`, the `image_scaling` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.subtitle + + + +### fn definition.sheets.visuals.custom_content_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.custom_content_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.title + + + +### fn definition.sheets.visuals.custom_content_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualscustom_content_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.custom_content_visual.title.format_text + + + +### fn definition.sheets.visuals.custom_content_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.custom_content_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.empty_visual + + + +### fn definition.sheets.visuals.empty_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.new` constructs a new object with attributes and blocks configured for the `empty_visual` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + +**Returns**: + - An attribute object that represents the `empty_visual` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions + + + +### fn definition.sheets.visuals.empty_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsempty_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsempty_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.empty_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.empty_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.empty_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual + + + +### fn definition.sheets.visuals.filled_map_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.new` constructs a new object with attributes and blocks configured for the `filled_map_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `filled_map_visual` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions + + + +### fn definition.sheets.visuals.filled_map_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visuallegendnew) constructor. + - `map_style_options` (`list[obj]`): Set the `map_style_options` field on the resulting object. When `null`, the `map_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualmap_style_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualtooltipnew) constructor. + - `window_options` (`list[obj]`): Set the `window_options` field on the resulting object. When `null`, the `window_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualwindow_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `filled_map_aggregated_field_wells` (`list[obj]`): Set the `filled_map_aggregated_field_wells` field on the resulting object. When `null`, the `filled_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfilled_map_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `filled_map_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `geospatial` (`list[obj]`): Set the `geospatial` field on the resulting object. When `null`, the `geospatial` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsgeospatialnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `filled_map_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.new` constructs a new object with attributes and blocks configured for the `geospatial` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `geospatial` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_wellsfilled_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.field_wells.filled_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.map_style_options.new` constructs a new object with attributes and blocks configured for the `map_style_options` +Terraform sub block. + + + +**Args**: + - `base_map_style` (`string`): Set the `base_map_style` field on the resulting object. When `null`, the `base_map_style` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `map_style_options` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationcategory_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.window_options + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.new` constructs a new object with attributes and blocks configured for the `window_options` +Terraform sub block. + + + +**Args**: + - `map_zoom_mode` (`string`): Set the `map_zoom_mode` field on the resulting object. When `null`, the `map_zoom_mode` field will be omitted from the resulting object. + - `bounds` (`list[obj]`): Set the `bounds` field on the resulting object. When `null`, the `bounds` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualchart_configurationboundsnew) constructor. + +**Returns**: + - An attribute object that represents the `window_options` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds + + + +### fn definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.chart_configuration.window_options.bounds.new` constructs a new object with attributes and blocks configured for the `bounds` +Terraform sub block. + + + +**Args**: + - `east` (`number`): Set the `east` field on the resulting object. + - `north` (`number`): Set the `north` field on the resulting object. + - `south` (`number`): Set the `south` field on the resulting object. + - `west` (`number`): Set the `west` field on the resulting object. + +**Returns**: + - An attribute object that represents the `bounds` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting` +Terraform sub block. + + + +**Args**: + - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formatting_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options` +Terraform sub block. + + + +**Args**: + - `shape` (`list[obj]`): Set the `shape` field on the resulting object. When `null`, the `shape` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingshapenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting_options` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.new` constructs a new object with attributes and blocks configured for the `shape` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `format` (`list[obj]`): Set the `format` field on the resulting object. When `null`, the `format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsformatnew) constructor. + +**Returns**: + - An attribute object that represents the `shape` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.new` constructs a new object with attributes and blocks configured for the `format` +Terraform sub block. + + + +**Args**: + - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapebackground_colornew) constructor. + +**Returns**: + - An attribute object that represents the `format` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `background_color` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualconditional_formattingconditional_formatting_optionsshapeformatbackground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid + + + +### fn definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.conditional_formatting.conditional_formatting_options.shape.format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.subtitle + + + +### fn definition.sheets.visuals.filled_map_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.filled_map_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.title + + + +### fn definition.sheets.visuals.filled_map_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsfilled_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.filled_map_visual.title.format_text + + + +### fn definition.sheets.visuals.filled_map_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.filled_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual + + + +### fn definition.sheets.visuals.funnel_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.new` constructs a new object with attributes and blocks configured for the `funnel_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `funnel_chart_visual` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcategory_label_optionsnew) constructor. + - `data_label_options` (`list[obj]`): Set the `data_label_options` field on the resulting object. When `null`, the `data_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualdata_label_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualfield_wellsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualtooltipnew) constructor. + - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualvalue_label_optionsnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.new` constructs a new object with attributes and blocks configured for the `data_label_options` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `measure_data_label_style` (`string`): Set the `measure_data_label_style` field on the resulting object. When `null`, the `measure_data_label_style` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_options` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationdata_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.data_label_options.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `funnel_chart_aggregated_field_wells` (`list[obj]`): Set the `funnel_chart_aggregated_field_wells` field on the resulting object. When `null`, the `funnel_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfunnel_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `funnel_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `funnel_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_wellsfunnel_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.field_wells.funnel_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcategory_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_options` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.subtitle + + + +### fn definition.sheets.visuals.funnel_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.funnel_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.title + + + +### fn definition.sheets.visuals.funnel_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsfunnel_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.funnel_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.funnel_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.funnel_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual + + + +### fn definition.sheets.visuals.gauge_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.new` constructs a new object with attributes and blocks configured for the `gauge_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `gauge_chart_visual` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualfield_wellsnew) constructor. + - `gauge_chart_options` (`list[obj]`): Set the `gauge_chart_options` field on the resulting object. When `null`, the `gauge_chart_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualgauge_chart_optionsnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `target_values` (`list[obj]`): Set the `target_values` field on the resulting object. When `null`, the `target_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtarget_valuesnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.new` constructs a new object with attributes and blocks configured for the `target_values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `target_values` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.new` constructs a new object with attributes and blocks configured for the `gauge_chart_options` +Terraform sub block. + + + +**Args**: + - `primary_value_display_type` (`string`): Set the `primary_value_display_type` field on the resulting object. When `null`, the `primary_value_display_type` field will be omitted from the resulting object. + - `arc` (`list[obj]`): Set the `arc` field on the resulting object. When `null`, the `arc` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationarcnew) constructor. + - `arc_axis` (`list[obj]`): Set the `arc_axis` field on the resulting object. When `null`, the `arc_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationarc_axisnew) constructor. + - `comparison` (`list[obj]`): Set the `comparison` field on the resulting object. When `null`, the `comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationcomparisonnew) constructor. + - `primary_value_font_configuration` (`list[obj]`): Set the `primary_value_font_configuration` field on the resulting object. When `null`, the `primary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationprimary_value_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `gauge_chart_options` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc.new` constructs a new object with attributes and blocks configured for the `arc` +Terraform sub block. + + + +**Args**: + - `arc_angle` (`number`): Set the `arc_angle` field on the resulting object. When `null`, the `arc_angle` field will be omitted from the resulting object. + - `arc_thickness` (`string`): Set the `arc_thickness` field on the resulting object. When `null`, the `arc_thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `arc` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.new` constructs a new object with attributes and blocks configured for the `arc_axis` +Terraform sub block. + + + +**Args**: + - `reserve_range` (`number`): Set the `reserve_range` field on the resulting object. When `null`, the `reserve_range` field will be omitted from the resulting object. + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsrangenew) constructor. + +**Returns**: + - An attribute object that represents the `arc_axis` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.arc_axis.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `max` (`number`): Set the `max` field on the resulting object. When `null`, the `max` field will be omitted from the resulting object. + - `min` (`number`): Set the `min` field on the resulting object. When `null`, the `min` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.new` constructs a new object with attributes and blocks configured for the `comparison` +Terraform sub block. + + + +**Args**: + - `comparison_method` (`string`): Set the `comparison_method` field on the resulting object. When `null`, the `comparison_method` field will be omitted from the resulting object. + - `comparison_format` (`list[obj]`): Set the `comparison_format` field on the resulting object. When `null`, the `comparison_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparison_formatnew) constructor. + +**Returns**: + - An attribute object that represents the `comparison` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.new` constructs a new object with attributes and blocks configured for the `comparison_format` +Terraform sub block. + + + +**Args**: + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisonnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisonpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `comparison_format` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionscomparisoncomparison_formatpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `primary_value_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationgauge_chart_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_value_font_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.gauge_chart_options.primary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting` +Terraform sub block. + + + +**Args**: + - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formatting_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options` +Terraform sub block. + + + +**Args**: + - `arc` (`list[obj]`): Set the `arc` field on the resulting object. When `null`, the `arc` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingarcnew) constructor. + - `primary_value` (`list[obj]`): Set the `primary_value` field on the resulting object. When `null`, the `primary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingprimary_valuenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting_options` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.new` constructs a new object with attributes and blocks configured for the `arc` +Terraform sub block. + + + +**Args**: + - `foreground_color` (`list[obj]`): Set the `foreground_color` field on the resulting object. When `null`, the `foreground_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsforeground_colornew) constructor. + +**Returns**: + - An attribute object that represents the `arc` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.new` constructs a new object with attributes and blocks configured for the `foreground_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `foreground_color` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsarcforeground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.arc.foreground_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.new` constructs a new object with attributes and blocks configured for the `primary_value` +Terraform sub block. + + + +**Args**: + - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsiconnew) constructor. + - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor. + +**Returns**: + - An attribute object that represents the `primary_value` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new` constructs a new object with attributes and blocks configured for the `icon` +Terraform sub block. + + + +**Args**: + - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuecustom_conditionnew) constructor. + - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueicon_setnew) constructor. + +**Returns**: + - An attribute object that represents the `icon` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueicondisplay_configurationnew) constructor. + - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_condition` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration` +Terraform sub block. + + + +**Args**: + - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `display_configuration` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options` +Terraform sub block. + + + +**Args**: + - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object. + - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_options` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_set` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new` constructs a new object with attributes and blocks configured for the `text_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuegradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuesolidnew) constructor. + +**Returns**: + - An attribute object that represents the `text_color` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid + + + +### fn definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.subtitle + + + +### fn definition.sheets.visuals.gauge_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.gauge_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.title + + + +### fn definition.sheets.visuals.gauge_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsgauge_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.gauge_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.gauge_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.gauge_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual + + + +### fn definition.sheets.visuals.geospatial_map_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.new` constructs a new object with attributes and blocks configured for the `geospatial_map_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `geospatial_map_visual` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visuallegendnew) constructor. + - `map_style_options` (`list[obj]`): Set the `map_style_options` field on the resulting object. When `null`, the `map_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualmap_style_optionsnew) constructor. + - `point_style_options` (`list[obj]`): Set the `point_style_options` field on the resulting object. When `null`, the `point_style_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualpoint_style_optionsnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualvisual_palettenew) constructor. + - `window_options` (`list[obj]`): Set the `window_options` field on the resulting object. When `null`, the `window_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualwindow_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `geospatial_map_aggregated_field_wells` (`list[obj]`): Set the `geospatial_map_aggregated_field_wells` field on the resulting object. When `null`, the `geospatial_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationgeospatial_map_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `geospatial_map_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellscolorsnew) constructor. + - `geospatial` (`list[obj]`): Set the `geospatial` field on the resulting object. When `null`, the `geospatial` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatialnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `geospatial_map_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.new` constructs a new object with attributes and blocks configured for the `geospatial` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `geospatial` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsgeospatialnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.geospatial.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_wellsgeospatial_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.field_wells.geospatial_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.map_style_options.new` constructs a new object with attributes and blocks configured for the `map_style_options` +Terraform sub block. + + + +**Args**: + - `base_map_style` (`string`): Set the `base_map_style` field on the resulting object. When `null`, the `base_map_style` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `map_style_options` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.new` constructs a new object with attributes and blocks configured for the `point_style_options` +Terraform sub block. + + + +**Args**: + - `selected_point_style` (`string`): Set the `selected_point_style` field on the resulting object. When `null`, the `selected_point_style` field will be omitted from the resulting object. + - `cluster_marker_configuration` (`list[obj]`): Set the `cluster_marker_configuration` field on the resulting object. When `null`, the `cluster_marker_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationcluster_marker_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `point_style_options` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.new` constructs a new object with attributes and blocks configured for the `cluster_marker_configuration` +Terraform sub block. + + + +**Args**: + - `cluster_marker` (`list[obj]`): Set the `cluster_marker` field on the resulting object. When `null`, the `cluster_marker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_markernew) constructor. + +**Returns**: + - An attribute object that represents the `cluster_marker_configuration` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.new` constructs a new object with attributes and blocks configured for the `cluster_marker` +Terraform sub block. + + + +**Args**: + - `simple_cluster_marker` (`list[obj]`): Set the `simple_cluster_marker` field on the resulting object. When `null`, the `simple_cluster_marker` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationpoint_style_optionscluster_marker_configurationsimple_cluster_markernew) constructor. + +**Returns**: + - An attribute object that represents the `cluster_marker` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.point_style_options.cluster_marker_configuration.cluster_marker.simple_cluster_marker.new` constructs a new object with attributes and blocks configured for the `simple_cluster_marker` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `simple_cluster_marker` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.new` constructs a new object with attributes and blocks configured for the `window_options` +Terraform sub block. + + + +**Args**: + - `map_zoom_mode` (`string`): Set the `map_zoom_mode` field on the resulting object. When `null`, the `map_zoom_mode` field will be omitted from the resulting object. + - `bounds` (`list[obj]`): Set the `bounds` field on the resulting object. When `null`, the `bounds` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualchart_configurationboundsnew) constructor. + +**Returns**: + - An attribute object that represents the `window_options` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds + + + +### fn definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.chart_configuration.window_options.bounds.new` constructs a new object with attributes and blocks configured for the `bounds` +Terraform sub block. + + + +**Args**: + - `east` (`number`): Set the `east` field on the resulting object. + - `north` (`number`): Set the `north` field on the resulting object. + - `south` (`number`): Set the `south` field on the resulting object. + - `west` (`number`): Set the `west` field on the resulting object. + +**Returns**: + - An attribute object that represents the `bounds` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.subtitle + + + +### fn definition.sheets.visuals.geospatial_map_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.geospatial_map_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.title + + + +### fn definition.sheets.visuals.geospatial_map_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsgeospatial_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.geospatial_map_visual.title.format_text + + + +### fn definition.sheets.visuals.geospatial_map_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.geospatial_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.heat_map_visual + + + +### fn definition.sheets.visuals.heat_map_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.new` constructs a new object with attributes and blocks configured for the `heat_map_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `heat_map_visual` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions + + + +### fn definition.sheets.visuals.heat_map_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `color_scale` (`list[obj]`): Set the `color_scale` field on the resulting object. When `null`, the `color_scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolor_scalenew) constructor. + - `column_label_options` (`list[obj]`): Set the `column_label_options` field on the resulting object. When `null`, the `column_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_label_optionsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsheat_map_visuallegendnew) constructor. + - `row_label_options` (`list[obj]`): Set the `row_label_options` field on the resulting object. When `null`, the `row_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualrow_label_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualtooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.new` constructs a new object with attributes and blocks configured for the `color_scale` +Terraform sub block. + + + +**Args**: + - `color_fill_type` (`string`): Set the `color_fill_type` field on the resulting object. + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolorsnew) constructor. + - `null_value_color` (`list[obj]`): Set the `null_value_color` field on the resulting object. When `null`, the `null_value_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationnull_value_colornew) constructor. + +**Returns**: + - An attribute object that represents the `color_scale` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.color_scale.null_value_color.new` constructs a new object with attributes and blocks configured for the `null_value_color` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_color` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.new` constructs a new object with attributes and blocks configured for the `column_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `column_label_options` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationcolumn_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.column_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `heat_map_aggregated_field_wells` (`list[obj]`): Set the `heat_map_aggregated_field_wells` field on the resulting object. When `null`, the `heat_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `heat_map_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellscolumnsnew) constructor. + - `rows` (`list[obj]`): Set the `rows` field on the resulting object. When `null`, the `rows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsrowsnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `heat_map_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.new` constructs a new object with attributes and blocks configured for the `rows` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `rows` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_wellsheat_map_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.field_wells.heat_map_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.new` constructs a new object with attributes and blocks configured for the `row_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `row_label_options` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationrow_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.row_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `heat_map_column_items_limit_configuration` (`list[obj]`): Set the `heat_map_column_items_limit_configuration` field on the resulting object. When `null`, the `heat_map_column_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_column_items_limit_configurationnew) constructor. + - `heat_map_column_sort` (`list[obj]`): Set the `heat_map_column_sort` field on the resulting object. When `null`, the `heat_map_column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_column_sortnew) constructor. + - `heat_map_row_items_limit_configuration` (`list[obj]`): Set the `heat_map_row_items_limit_configuration` field on the resulting object. When `null`, the `heat_map_row_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_row_items_limit_configurationnew) constructor. + - `heat_map_row_sort` (`list[obj]`): Set the `heat_map_row_sort` field on the resulting object. When `null`, the `heat_map_row_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationheat_map_row_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `heat_map_column_items_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `heat_map_column_items_limit_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.new` constructs a new object with attributes and blocks configured for the `heat_map_column_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `heat_map_column_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_column_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_column_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `heat_map_row_items_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `heat_map_row_items_limit_configuration` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.new` constructs a new object with attributes and blocks configured for the `heat_map_row_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `heat_map_row_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationsort_configurationheat_map_row_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.sort_configuration.heat_map_row_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.subtitle + + + +### fn definition.sheets.visuals.heat_map_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.heat_map_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.title + + + +### fn definition.sheets.visuals.heat_map_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsheat_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.heat_map_visual.title.format_text + + + +### fn definition.sheets.visuals.heat_map_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.heat_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.histogram_visual + + + +### fn definition.sheets.visuals.histogram_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.new` constructs a new object with attributes and blocks configured for the `histogram_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `histogram_visual` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions + + + +### fn definition.sheets.visuals.histogram_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualshistogram_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualshistogram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `bin_options` (`list[obj]`): Set the `bin_options` field on the resulting object. When `null`, the `bin_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualbin_optionsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualshistogram_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualshistogram_visualfield_wellsnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualshistogram_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualshistogram_visualvisual_palettenew) constructor. + - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualx_axis_display_optionsnew) constructor. + - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualx_axis_label_optionsnew) constructor. + - `y_axis_display_options` (`list[obj]`): Set the `y_axis_display_options` field on the resulting object. When `null`, the `y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualy_axis_display_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.new` constructs a new object with attributes and blocks configured for the `bin_options` +Terraform sub block. + + + +**Args**: + - `selected_bin_type` (`string`): Set the `selected_bin_type` field on the resulting object. When `null`, the `selected_bin_type` field will be omitted from the resulting object. + - `start_value` (`number`): Set the `start_value` field on the resulting object. When `null`, the `start_value` field will be omitted from the resulting object. + - `bin_count` (`list[obj]`): Set the `bin_count` field on the resulting object. When `null`, the `bin_count` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationbin_countnew) constructor. + - `bin_width` (`list[obj]`): Set the `bin_width` field on the resulting object. When `null`, the `bin_width` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationbin_widthnew) constructor. + +**Returns**: + - An attribute object that represents the `bin_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_count.new` constructs a new object with attributes and blocks configured for the `bin_count` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bin_count` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.bin_options.bin_width.new` constructs a new object with attributes and blocks configured for the `bin_width` +Terraform sub block. + + + +**Args**: + - `bin_count_limit` (`number`): Set the `bin_count_limit` field on the resulting object. When `null`, the `bin_count_limit` field will be omitted from the resulting object. + - `value` (`number`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bin_width` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `histogram_aggregated_field_wells` (`list[obj]`): Set the `histogram_aggregated_field_wells` field on the resulting object. When `null`, the `histogram_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationhistogram_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `histogram_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `histogram_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_wellshistogram_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.field_wells.histogram_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_display_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualshistogram_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.histogram_visual.subtitle + + + +### fn definition.sheets.visuals.histogram_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualshistogram_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.histogram_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.histogram_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.histogram_visual.title + + + +### fn definition.sheets.visuals.histogram_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualshistogram_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.histogram_visual.title.format_text + + + +### fn definition.sheets.visuals.histogram_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.histogram_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.insight_visual + + + +### fn definition.sheets.visuals.insight_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.new` constructs a new object with attributes and blocks configured for the `insight_visual` +Terraform sub block. + + + +**Args**: + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `insight_configuration` (`list[obj]`): Set the `insight_configuration` field on the resulting object. When `null`, the `insight_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_configurationnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `insight_visual` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions + + + +### fn definition.sheets.visuals.insight_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsinsight_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsinsight_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.insight_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.insight_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.new` constructs a new object with attributes and blocks configured for the `insight_configuration` +Terraform sub block. + + + +**Args**: + - `computation` (`list[obj]`): Set the `computation` field on the resulting object. When `null`, the `computation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualcomputationnew) constructor. + - `custom_narrative` (`list[obj]`): Set the `custom_narrative` field on the resulting object. When `null`, the `custom_narrative` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative.new](#fn-definitiondefinitionsheetsvisualsinsight_visualcustom_narrativenew) constructor. + +**Returns**: + - An attribute object that represents the `insight_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.new` constructs a new object with attributes and blocks configured for the `computation` +Terraform sub block. + + + +**Args**: + - `forecast` (`list[obj]`): Set the `forecast` field on the resulting object. When `null`, the `forecast` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationforecastnew) constructor. + - `growth_rate` (`list[obj]`): Set the `growth_rate` field on the resulting object. When `null`, the `growth_rate` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationgrowth_ratenew) constructor. + - `maximum_minimum` (`list[obj]`): Set the `maximum_minimum` field on the resulting object. When `null`, the `maximum_minimum` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationmaximum_minimumnew) constructor. + - `metric_comparison` (`list[obj]`): Set the `metric_comparison` field on the resulting object. When `null`, the `metric_comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationmetric_comparisonnew) constructor. + - `period_over_period` (`list[obj]`): Set the `period_over_period` field on the resulting object. When `null`, the `period_over_period` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationperiod_over_periodnew) constructor. + - `period_to_date` (`list[obj]`): Set the `period_to_date` field on the resulting object. When `null`, the `period_to_date` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationperiod_to_datenew) constructor. + - `top_bottom_movers` (`list[obj]`): Set the `top_bottom_movers` field on the resulting object. When `null`, the `top_bottom_movers` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtop_bottom_moversnew) constructor. + - `top_bottom_ranked` (`list[obj]`): Set the `top_bottom_ranked` field on the resulting object. When `null`, the `top_bottom_ranked` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtop_bottom_rankednew) constructor. + - `total_aggregation` (`list[obj]`): Set the `total_aggregation` field on the resulting object. When `null`, the `total_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationtotal_aggregationnew) constructor. + - `unique_values` (`list[obj]`): Set the `unique_values` field on the resulting object. When `null`, the `unique_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationunique_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `computation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.new` constructs a new object with attributes and blocks configured for the `forecast` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `custom_seasonality_value` (`number`): Set the `custom_seasonality_value` field on the resulting object. When `null`, the `custom_seasonality_value` field will be omitted from the resulting object. + - `lower_boundary` (`number`): Set the `lower_boundary` field on the resulting object. When `null`, the `lower_boundary` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `periods_backward` (`number`): Set the `periods_backward` field on the resulting object. When `null`, the `periods_backward` field will be omitted from the resulting object. + - `periods_forward` (`number`): Set the `periods_forward` field on the resulting object. When `null`, the `periods_forward` field will be omitted from the resulting object. + - `prediction_interval` (`number`): Set the `prediction_interval` field on the resulting object. When `null`, the `prediction_interval` field will be omitted from the resulting object. + - `seasonality` (`string`): Set the `seasonality` field on the resulting object. + - `upper_boundary` (`number`): Set the `upper_boundary` field on the resulting object. When `null`, the `upper_boundary` field will be omitted from the resulting object. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `forecast` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecasttimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastcategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationforecastvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.forecast.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.new` constructs a new object with attributes and blocks configured for the `growth_rate` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `period_size` (`number`): Set the `period_size` field on the resulting object. When `null`, the `period_size` field will be omitted from the resulting object. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `growth_rate` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratedate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratenumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratecategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratedate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratenumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationgrowth_ratevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.growth_rate.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.new` constructs a new object with attributes and blocks configured for the `maximum_minimum` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `maximum_minimum` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumcategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmaximum_minimumvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.maximum_minimum.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.new` constructs a new object with attributes and blocks configured for the `metric_comparison` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `from_value` (`list[obj]`): Set the `from_value` field on the resulting object. When `null`, the `from_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationfrom_valuenew) constructor. + - `target_value` (`list[obj]`): Set the `target_value` field on the resulting object. When `null`, the `target_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtarget_valuenew) constructor. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + +**Returns**: + - An attribute object that represents the `metric_comparison` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.new` constructs a new object with attributes and blocks configured for the `from_value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `from_value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonfrom_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.from_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.new` constructs a new object with attributes and blocks configured for the `target_value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `target_value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontarget_valuenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.target_value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisoncategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisondate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisonnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationmetric_comparisontimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.metric_comparison.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.new` constructs a new object with attributes and blocks configured for the `period_over_period` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `period_over_period` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_perioddate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodtimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodcategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_perioddate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_over_periodvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_over_period.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.new` constructs a new object with attributes and blocks configured for the `period_to_date` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `period_time_granularity` (`string`): Set the `period_time_granularity` field on the resulting object. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `period_to_date` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datedate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datenumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datetimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datecategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datedate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datenumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationperiod_to_datevaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.period_to_date.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.new` constructs a new object with attributes and blocks configured for the `top_bottom_movers` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `mover_size` (`number`): Set the `mover_size` field on the resulting object. When `null`, the `mover_size` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `sort_order` (`string`): Set the `sort_order` field on the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor. + - `time` (`list[obj]`): Set the `time` field on the resulting object. When `null`, the `time` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtimenew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `top_bottom_movers` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.new` constructs a new object with attributes and blocks configured for the `time` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `time` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverstimenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.time.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moverscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_moversvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_movers.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.new` constructs a new object with attributes and blocks configured for the `top_bottom_ranked` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `result_size` (`number`): Set the `result_size` field on the resulting object. When `null`, the `result_size` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `top_bottom_ranked` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankeddate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankednumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedcategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankeddate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankednumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtop_bottom_rankedvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.top_bottom_ranked.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.new` constructs a new object with attributes and blocks configured for the `total_aggregation` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `total_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationcalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationcategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvalueformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationtotal_aggregationvaluenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.total_aggregation.value.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.new` constructs a new object with attributes and blocks configured for the `unique_values` +Terraform sub block. + + + +**Args**: + - `computation_id` (`string`): Set the `computation_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationcategorynew) constructor. + +**Returns**: + - An attribute object that represents the `unique_values` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuesdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuesnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsinsight_visualinsight_configurationcomputationunique_valuescategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.computation.unique_values.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative + + + +### fn definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.insight_configuration.custom_narrative.new` constructs a new object with attributes and blocks configured for the `custom_narrative` +Terraform sub block. + + + +**Args**: + - `narrative` (`string`): Set the `narrative` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_narrative` sub block. + + +## obj definition.sheets.visuals.insight_visual.subtitle + + + +### fn definition.sheets.visuals.insight_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsinsight_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.insight_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.insight_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.insight_visual.title + + + +### fn definition.sheets.visuals.insight_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.insight_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsinsight_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.insight_visual.title.format_text + + + +### fn definition.sheets.visuals.insight_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.insight_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.kpi_visual + + + +### fn definition.sheets.visuals.kpi_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.new` constructs a new object with attributes and blocks configured for the `kpi_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `kpi_visual` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions + + + +### fn definition.sheets.visuals.kpi_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualskpi_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualskpi_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualskpi_visualfield_wellsnew) constructor. + - `kpi_options` (`list[obj]`): Set the `kpi_options` field on the resulting object. When `null`, the `kpi_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualkpi_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualsort_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `target_values` (`list[obj]`): Set the `target_values` field on the resulting object. When `null`, the `target_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtarget_valuesnew) constructor. + - `trend_groups` (`list[obj]`): Set the `trend_groups` field on the resulting object. When `null`, the `trend_groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_groupsnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.new` constructs a new object with attributes and blocks configured for the `target_values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `target_values` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstarget_valuesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.target_values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.new` constructs a new object with attributes and blocks configured for the `trend_groups` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `trend_groups` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellstrend_groupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.trend_groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationfield_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.new` constructs a new object with attributes and blocks configured for the `kpi_options` +Terraform sub block. + + + +**Args**: + - `primary_value_display_type` (`string`): Set the `primary_value_display_type` field on the resulting object. When `null`, the `primary_value_display_type` field will be omitted from the resulting object. + - `comparison` (`list[obj]`): Set the `comparison` field on the resulting object. When `null`, the `comparison` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationcomparisonnew) constructor. + - `primary_value_font_configuration` (`list[obj]`): Set the `primary_value_font_configuration` field on the resulting object. When `null`, the `primary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationprimary_value_font_configurationnew) constructor. + - `progress_bar` (`list[obj]`): Set the `progress_bar` field on the resulting object. When `null`, the `progress_bar` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationprogress_barnew) constructor. + - `secondary_value` (`list[obj]`): Set the `secondary_value` field on the resulting object. When `null`, the `secondary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsecondary_valuenew) constructor. + - `secondary_value_font_configuration` (`list[obj]`): Set the `secondary_value_font_configuration` field on the resulting object. When `null`, the `secondary_value_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsecondary_value_font_configurationnew) constructor. + - `trend_arrows` (`list[obj]`): Set the `trend_arrows` field on the resulting object. When `null`, the `trend_arrows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_arrowsnew) constructor. + +**Returns**: + - An attribute object that represents the `kpi_options` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.new` constructs a new object with attributes and blocks configured for the `comparison` +Terraform sub block. + + + +**Args**: + - `comparison_method` (`string`): Set the `comparison_method` field on the resulting object. When `null`, the `comparison_method` field will be omitted from the resulting object. + - `comparison_format` (`list[obj]`): Set the `comparison_format` field on the resulting object. When `null`, the `comparison_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparison_formatnew) constructor. + +**Returns**: + - An attribute object that represents the `comparison` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.new` constructs a new object with attributes and blocks configured for the `comparison_format` +Terraform sub block. + + + +**Args**: + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisonnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisonpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `comparison_format` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionscomparisoncomparison_formatpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.comparison.comparison_format.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `primary_value_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_value_font_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.primary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.progress_bar.new` constructs a new object with attributes and blocks configured for the `progress_bar` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `progress_bar` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value.new` constructs a new object with attributes and blocks configured for the `secondary_value` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `secondary_value` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.new` constructs a new object with attributes and blocks configured for the `secondary_value_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationkpi_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `secondary_value_font_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.secondary_value_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.kpi_options.trend_arrows.new` constructs a new object with attributes and blocks configured for the `trend_arrows` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `trend_arrows` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `trend_group_sort` (`list[obj]`): Set the `trend_group_sort` field on the resulting object. When `null`, the `trend_group_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationtrend_group_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.new` constructs a new object with attributes and blocks configured for the `trend_group_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `trend_group_sort` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualskpi_visualchart_configurationsort_configurationtrend_group_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort + + + +### fn definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.chart_configuration.sort_configuration.trend_group_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualskpi_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualskpi_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting` +Terraform sub block. + + + +**Args**: + - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formatting_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options` +Terraform sub block. + + + +**Args**: + - `primary_value` (`list[obj]`): Set the `primary_value` field on the resulting object. When `null`, the `primary_value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingprimary_valuenew) constructor. + - `progress_bar` (`list[obj]`): Set the `progress_bar` field on the resulting object. When `null`, the `progress_bar` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingprogress_barnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting_options` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.new` constructs a new object with attributes and blocks configured for the `primary_value` +Terraform sub block. + + + +**Args**: + - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsiconnew) constructor. + - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor. + +**Returns**: + - An attribute object that represents the `primary_value` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.new` constructs a new object with attributes and blocks configured for the `icon` +Terraform sub block. + + + +**Args**: + - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuecustom_conditionnew) constructor. + - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueicon_setnew) constructor. + +**Returns**: + - An attribute object that represents the `icon` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueicondisplay_configurationnew) constructor. + - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valueiconicon_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_condition` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration` +Terraform sub block. + + + +**Args**: + - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `display_configuration` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options` +Terraform sub block. + + + +**Args**: + - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object. + - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_options` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_set` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.new` constructs a new object with attributes and blocks configured for the `text_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuegradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuesolidnew) constructor. + +**Returns**: + - An attribute object that represents the `text_color` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprimary_valuetext_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.primary_value.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.new` constructs a new object with attributes and blocks configured for the `progress_bar` +Terraform sub block. + + + +**Args**: + - `foreground_color` (`list[obj]`): Set the `foreground_color` field on the resulting object. When `null`, the `foreground_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsforeground_colornew) constructor. + +**Returns**: + - An attribute object that represents the `progress_bar` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.new` constructs a new object with attributes and blocks configured for the `foreground_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_bargradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `foreground_color` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualskpi_visualconditional_formattingconditional_formatting_optionsprogress_barforeground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid + + + +### fn definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.conditional_formatting.conditional_formatting_options.progress_bar.foreground_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.kpi_visual.subtitle + + + +### fn definition.sheets.visuals.kpi_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualskpi_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.kpi_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.kpi_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.kpi_visual.title + + + +### fn definition.sheets.visuals.kpi_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualskpi_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.kpi_visual.title.format_text + + + +### fn definition.sheets.visuals.kpi_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.kpi_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.line_chart_visual + + + +### fn definition.sheets.visuals.line_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.new` constructs a new object with attributes and blocks configured for the `line_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `line_chart_visual` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions + + + +### fn definition.sheets.visuals.line_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `type` (`string`): Set the `type` field on the resulting object. When `null`, the `type` field will be omitted from the resulting object. + - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcontribution_analysis_defaultsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdata_labelsnew) constructor. + - `default_series_settings` (`list[obj]`): Set the `default_series_settings` field on the resulting object. When `null`, the `default_series_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdefault_series_settingsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualfield_wellsnew) constructor. + - `forecast_configurations` (`list[obj]`): Set the `forecast_configurations` field on the resulting object. When `null`, the `forecast_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualforecast_configurationsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsline_chart_visuallegendnew) constructor. + - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualprimary_y_axis_display_optionsnew) constructor. + - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualprimary_y_axis_label_optionsnew) constructor. + - `reference_lines` (`list[obj]`): Set the `reference_lines` field on the resulting object. When `null`, the `reference_lines` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualreference_linesnew) constructor. + - `secondary_y_axis_display_options` (`list[obj]`): Set the `secondary_y_axis_display_options` field on the resulting object. When `null`, the `secondary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsecondary_y_axis_display_optionsnew) constructor. + - `secondary_y_axis_label_options` (`list[obj]`): Set the `secondary_y_axis_label_options` field on the resulting object. When `null`, the `secondary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsecondary_y_axis_label_optionsnew) constructor. + - `series` (`list[obj]`): Set the `series` field on the resulting object. When `null`, the `series` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualseriesnew) constructor. + - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsmall_multiples_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualvisual_palettenew) constructor. + - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualx_axis_display_optionsnew) constructor. + - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualx_axis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults` +Terraform sub block. + + + +**Args**: + - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object. + - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcontributor_dimensionsnew) constructor. + +**Returns**: + - An attribute object that represents the `contribution_analysis_defaults` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `contributor_dimensions` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.new` constructs a new object with attributes and blocks configured for the `default_series_settings` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object. + - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationline_style_settingsnew) constructor. + - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmarker_style_settingsnew) constructor. + +**Returns**: + - An attribute object that represents the `default_series_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings` +Terraform sub block. + + + +**Args**: + - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object. + - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object. + - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object. + - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `line_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.default_series_settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings` +Terraform sub block. + + + +**Args**: + - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object. + - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object. + - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object. + - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `marker_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `line_chart_aggregated_field_wells` (`list[obj]`): Set the `line_chart_aggregated_field_wells` field on the resulting object. When `null`, the `line_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationline_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `line_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellscolorsnew) constructor. + - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `line_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscolorsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.colors.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_wellsline_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.field_wells.line_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.new` constructs a new object with attributes and blocks configured for the `forecast_configurations` +Terraform sub block. + + + +**Args**: + - `forecast_properties` (`list[obj]`): Set the `forecast_properties` field on the resulting object. When `null`, the `forecast_properties` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_propertiesnew) constructor. + - `scenario` (`list[obj]`): Set the `scenario` field on the resulting object. When `null`, the `scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationscenarionew) constructor. + +**Returns**: + - An attribute object that represents the `forecast_configurations` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.forecast_properties.new` constructs a new object with attributes and blocks configured for the `forecast_properties` +Terraform sub block. + + + +**Args**: + - `lower_boundary` (`number`): Set the `lower_boundary` field on the resulting object. When `null`, the `lower_boundary` field will be omitted from the resulting object. + - `periods_backward` (`number`): Set the `periods_backward` field on the resulting object. When `null`, the `periods_backward` field will be omitted from the resulting object. + - `periods_forward` (`number`): Set the `periods_forward` field on the resulting object. When `null`, the `periods_forward` field will be omitted from the resulting object. + - `prediction_interval` (`number`): Set the `prediction_interval` field on the resulting object. When `null`, the `prediction_interval` field will be omitted from the resulting object. + - `seasonality` (`number`): Set the `seasonality` field on the resulting object. When `null`, the `seasonality` field will be omitted from the resulting object. + - `upper_boundary` (`number`): Set the `upper_boundary` field on the resulting object. When `null`, the `upper_boundary` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `forecast_properties` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.new` constructs a new object with attributes and blocks configured for the `scenario` +Terraform sub block. + + + +**Args**: + - `what_if_point_scenario` (`list[obj]`): Set the `what_if_point_scenario` field on the resulting object. When `null`, the `what_if_point_scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationswhat_if_point_scenarionew) constructor. + - `what_if_range_scenario` (`list[obj]`): Set the `what_if_range_scenario` field on the resulting object. When `null`, the `what_if_range_scenario` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationforecast_configurationswhat_if_range_scenarionew) constructor. + +**Returns**: + - An attribute object that represents the `scenario` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_point_scenario.new` constructs a new object with attributes and blocks configured for the `what_if_point_scenario` +Terraform sub block. + + + +**Args**: + - `date` (`string`): Set the `date` field on the resulting object. + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `what_if_point_scenario` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.forecast_configurations.scenario.what_if_range_scenario.new` constructs a new object with attributes and blocks configured for the `what_if_range_scenario` +Terraform sub block. + + + +**Args**: + - `end_date` (`string`): Set the `end_date` field on the resulting object. + - `start_date` (`string`): Set the `start_date` field on the resulting object. + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `what_if_range_scenario` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_options` (`list[obj]`): Set the `axis_options` field on the resulting object. When `null`, the `axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_optionsnew) constructor. + - `missing_data_configuration` (`list[obj]`): Set the `missing_data_configuration` field on the resulting object. When `null`, the `missing_data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmissing_data_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.new` constructs a new object with attributes and blocks configured for the `axis_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_display_options.missing_data_configuration.new` constructs a new object with attributes and blocks configured for the `missing_data_configuration` +Terraform sub block. + + + +**Args**: + - `treatment_option` (`string`): Set the `treatment_option` field on the resulting object. When `null`, the `treatment_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `missing_data_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.new` constructs a new object with attributes and blocks configured for the `reference_lines` +Terraform sub block. + + + +**Args**: + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + - `data_configuration` (`list[obj]`): Set the `data_configuration` field on the resulting object. When `null`, the `data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_configurationnew) constructor. + - `label_configuration` (`list[obj]`): Set the `label_configuration` field on the resulting object. When `null`, the `label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationlabel_configurationnew) constructor. + - `style_configuration` (`list[obj]`): Set the `style_configuration` field on the resulting object. When `null`, the `style_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationstyle_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `reference_lines` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.new` constructs a new object with attributes and blocks configured for the `data_configuration` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. When `null`, the `axis_binding` field will be omitted from the resulting object. + - `dynamic_configuration` (`list[obj]`): Set the `dynamic_configuration` field on the resulting object. When `null`, the `dynamic_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdynamic_configurationnew) constructor. + - `static_configuration` (`list[obj]`): Set the `static_configuration` field on the resulting object. When `null`, the `static_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesstatic_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.new` constructs a new object with attributes and blocks configured for the `dynamic_configuration` +Terraform sub block. + + + +**Args**: + - `calculation` (`list[obj]`): Set the `calculation` field on the resulting object. When `null`, the `calculation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationcalculationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationcolumnnew) constructor. + - `measure_aggregation_function` (`list[obj]`): Set the `measure_aggregation_function` field on the resulting object. When `null`, the `measure_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationmeasure_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `dynamic_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.new` constructs a new object with attributes and blocks configured for the `calculation` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `calculation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.calculation.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.new` constructs a new object with attributes and blocks configured for the `measure_aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `measure_aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesdata_configurationdynamic_configurationmeasure_aggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.dynamic_configuration.measure_aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.data_configuration.static_configuration.new` constructs a new object with attributes and blocks configured for the `static_configuration` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `static_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.new` constructs a new object with attributes and blocks configured for the `label_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `horizontal_position` (`string`): Set the `horizontal_position` field on the resulting object. When `null`, the `horizontal_position` field will be omitted from the resulting object. + - `vertical_position` (`string`): Set the `vertical_position` field on the resulting object. When `null`, the `vertical_position` field will be omitted from the resulting object. + - `custom_label_configuration` (`list[obj]`): Set the `custom_label_configuration` field on the resulting object. When `null`, the `custom_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linescustom_label_configurationnew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesfont_configurationnew) constructor. + - `value_label_configuration` (`list[obj]`): Set the `value_label_configuration` field on the resulting object. When `null`, the `value_label_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_linesvalue_label_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.custom_label_configuration.new` constructs a new object with attributes and blocks configured for the `custom_label_configuration` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_label_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.new` constructs a new object with attributes and blocks configured for the `value_label_configuration` +Terraform sub block. + + + +**Args**: + - `relative_position` (`string`): Set the `relative_position` field on the resulting object. When `null`, the `relative_position` field will be omitted from the resulting object. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationreference_lineslabel_configurationvalue_label_configurationformat_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.label_configuration.value_label_configuration.format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.reference_lines.style_configuration.new` constructs a new object with attributes and blocks configured for the `style_configuration` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `pattern` (`string`): Set the `pattern` field on the resulting object. When `null`, the `pattern` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `style_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_options` (`list[obj]`): Set the `axis_options` field on the resulting object. When `null`, the `axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_optionsnew) constructor. + - `missing_data_configuration` (`list[obj]`): Set the `missing_data_configuration` field on the resulting object. When `null`, the `missing_data_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationmissing_data_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `secondary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.new` constructs a new object with attributes and blocks configured for the `axis_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionstick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_display_optionsaxis_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.axis_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_display_options.missing_data_configuration.new` constructs a new object with attributes and blocks configured for the `missing_data_configuration` +Terraform sub block. + + + +**Args**: + - `treatment_option` (`string`): Set the `treatment_option` field on the resulting object. When `null`, the `treatment_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `missing_data_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `secondary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `secondary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsecondary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.secondary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.new` constructs a new object with attributes and blocks configured for the `series` +Terraform sub block. + + + +**Args**: + - `data_field_series_item` (`list[obj]`): Set the `data_field_series_item` field on the resulting object. When `null`, the `data_field_series_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_field_series_itemnew) constructor. + - `field_series_item` (`list[obj]`): Set the `field_series_item` field on the resulting object. When `null`, the `field_series_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_series_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `series` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.new` constructs a new object with attributes and blocks configured for the `data_field_series_item` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `settings` (`list[obj]`): Set the `settings` field on the resulting object. When `null`, the `settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriessettingsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_field_series_item` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.new` constructs a new object with attributes and blocks configured for the `settings` +Terraform sub block. + + + +**Args**: + - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemline_style_settingsnew) constructor. + - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesdata_field_series_itemmarker_style_settingsnew) constructor. + +**Returns**: + - An attribute object that represents the `settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings` +Terraform sub block. + + + +**Args**: + - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object. + - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object. + - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object. + - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `line_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.data_field_series_item.settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings` +Terraform sub block. + + + +**Args**: + - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object. + - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object. + - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object. + - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `marker_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.new` constructs a new object with attributes and blocks configured for the `field_series_item` +Terraform sub block. + + + +**Args**: + - `axis_binding` (`string`): Set the `axis_binding` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `settings` (`list[obj]`): Set the `settings` field on the resulting object. When `null`, the `settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriessettingsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_series_item` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.new` constructs a new object with attributes and blocks configured for the `settings` +Terraform sub block. + + + +**Args**: + - `line_style_settings` (`list[obj]`): Set the `line_style_settings` field on the resulting object. When `null`, the `line_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemline_style_settingsnew) constructor. + - `marker_style_settings` (`list[obj]`): Set the `marker_style_settings` field on the resulting object. When `null`, the `marker_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationseriesfield_series_itemmarker_style_settingsnew) constructor. + +**Returns**: + - An attribute object that represents the `settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.line_style_settings.new` constructs a new object with attributes and blocks configured for the `line_style_settings` +Terraform sub block. + + + +**Args**: + - `line_interpolation` (`string`): Set the `line_interpolation` field on the resulting object. When `null`, the `line_interpolation` field will be omitted from the resulting object. + - `line_style` (`string`): Set the `line_style` field on the resulting object. When `null`, the `line_style` field will be omitted from the resulting object. + - `line_visibility` (`string`): Set the `line_visibility` field on the resulting object. When `null`, the `line_visibility` field will be omitted from the resulting object. + - `line_width` (`string`): Set the `line_width` field on the resulting object. When `null`, the `line_width` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `line_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.series.field_series_item.settings.marker_style_settings.new` constructs a new object with attributes and blocks configured for the `marker_style_settings` +Terraform sub block. + + + +**Args**: + - `marker_color` (`string`): Set the `marker_color` field on the resulting object. When `null`, the `marker_color` field will be omitted from the resulting object. + - `marker_shape` (`string`): Set the `marker_shape` field on the resulting object. When `null`, the `marker_shape` field will be omitted from the resulting object. + - `marker_size` (`string`): Set the `marker_size` field on the resulting object. When `null`, the `marker_size` field will be omitted from the resulting object. + - `marker_visibility` (`string`): Set the `marker_visibility` field on the resulting object. When `null`, the `marker_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `marker_style_settings` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options` +Terraform sub block. + + + +**Args**: + - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object. + - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object. + - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationpanel_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object. + - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object. + - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object. + - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object. + - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object. + - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object. + - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `panel_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit_configuration` (`list[obj]`): Set the `category_items_limit_configuration` field on the resulting object. When `null`, the `category_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcategory_items_limit_configurationnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcategory_sortnew) constructor. + - `color_items_limit_configuration` (`list[obj]`): Set the `color_items_limit_configuration` field on the resulting object. When `null`, the `color_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcolor_items_limit_configurationnew) constructor. + - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor. + - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsmall_multiples_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `category_items_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.color_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `color_items_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `color_items_limit_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `small_multiples_limit_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_display_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.subtitle + + + +### fn definition.sheets.visuals.line_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.line_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.title + + + +### fn definition.sheets.visuals.line_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsline_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.line_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.line_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.line_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual + + + +### fn definition.sheets.visuals.pie_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.new` constructs a new object with attributes and blocks configured for the `pie_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `pie_chart_visual` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcategory_label_optionsnew) constructor. + - `contribution_analysis_defaults` (`list[obj]`): Set the `contribution_analysis_defaults` field on the resulting object. When `null`, the `contribution_analysis_defaults` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcontribution_analysis_defaultsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdata_labelsnew) constructor. + - `donut_options` (`list[obj]`): Set the `donut_options` field on the resulting object. When `null`, the `donut_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdonut_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualspie_chart_visuallegendnew) constructor. + - `small_multiples_options` (`list[obj]`): Set the `small_multiples_options` field on the resulting object. When `null`, the `small_multiples_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualsmall_multiples_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualtooltipnew) constructor. + - `value_label_options` (`list[obj]`): Set the `value_label_options` field on the resulting object. When `null`, the `value_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualvalue_label_optionsnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.new` constructs a new object with attributes and blocks configured for the `contribution_analysis_defaults` +Terraform sub block. + + + +**Args**: + - `measure_field_id` (`string`): Set the `measure_field_id` field on the resulting object. + - `contributor_dimensions` (`list[obj]`): Set the `contributor_dimensions` field on the resulting object. When `null`, the `contributor_dimensions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcontributor_dimensionsnew) constructor. + +**Returns**: + - An attribute object that represents the `contribution_analysis_defaults` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.contribution_analysis_defaults.contributor_dimensions.new` constructs a new object with attributes and blocks configured for the `contributor_dimensions` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `contributor_dimensions` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.new` constructs a new object with attributes and blocks configured for the `donut_options` +Terraform sub block. + + + +**Args**: + - `arc_options` (`list[obj]`): Set the `arc_options` field on the resulting object. When `null`, the `arc_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationarc_optionsnew) constructor. + - `donut_center_options` (`list[obj]`): Set the `donut_center_options` field on the resulting object. When `null`, the `donut_center_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationdonut_center_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `donut_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.arc_options.new` constructs a new object with attributes and blocks configured for the `arc_options` +Terraform sub block. + + + +**Args**: + - `arc_thickness` (`string`): Set the `arc_thickness` field on the resulting object. When `null`, the `arc_thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `arc_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.donut_options.donut_center_options.new` constructs a new object with attributes and blocks configured for the `donut_center_options` +Terraform sub block. + + + +**Args**: + - `label_visibility` (`string`): Set the `label_visibility` field on the resulting object. When `null`, the `label_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `donut_center_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `pie_chart_aggregated_field_wells` (`list[obj]`): Set the `pie_chart_aggregated_field_wells` field on the resulting object. When `null`, the `pie_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationpie_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `pie_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `small_multiples` (`list[obj]`): Set the `small_multiples` field on the resulting object. When `null`, the `small_multiples` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellssmall_multiplesnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `pie_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.new` constructs a new object with attributes and blocks configured for the `small_multiples` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellssmall_multiplesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.small_multiples.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_wellspie_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.field_wells.pie_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.new` constructs a new object with attributes and blocks configured for the `small_multiples_options` +Terraform sub block. + + + +**Args**: + - `max_visible_columns` (`number`): Set the `max_visible_columns` field on the resulting object. When `null`, the `max_visible_columns` field will be omitted from the resulting object. + - `max_visible_rows` (`number`): Set the `max_visible_rows` field on the resulting object. When `null`, the `max_visible_rows` field will be omitted from the resulting object. + - `panel_configuration` (`list[obj]`): Set the `panel_configuration` field on the resulting object. When `null`, the `panel_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationpanel_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.new` constructs a new object with attributes and blocks configured for the `panel_configuration` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `background_visibility` (`string`): Set the `background_visibility` field on the resulting object. When `null`, the `background_visibility` field will be omitted from the resulting object. + - `border_color` (`string`): Set the `border_color` field on the resulting object. When `null`, the `border_color` field will be omitted from the resulting object. + - `border_style` (`string`): Set the `border_style` field on the resulting object. When `null`, the `border_style` field will be omitted from the resulting object. + - `border_thickness` (`string`): Set the `border_thickness` field on the resulting object. When `null`, the `border_thickness` field will be omitted from the resulting object. + - `border_visibility` (`string`): Set the `border_visibility` field on the resulting object. When `null`, the `border_visibility` field will be omitted from the resulting object. + - `gutter_spacing` (`string`): Set the `gutter_spacing` field on the resulting object. When `null`, the `gutter_spacing` field will be omitted from the resulting object. + - `gutter_visibility` (`string`): Set the `gutter_visibility` field on the resulting object. When `null`, the `gutter_visibility` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `panel_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_optionspanel_configurationtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.small_multiples_options.panel_configuration.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcategory_sortnew) constructor. + - `small_multiples_limit_configuration` (`list[obj]`): Set the `small_multiples_limit_configuration` field on the resulting object. When `null`, the `small_multiples_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_limit_configurationnew) constructor. + - `small_multiples_sort` (`list[obj]`): Set the `small_multiples_sort` field on the resulting object. When `null`, the `small_multiples_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsmall_multiples_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_limit_configuration.new` constructs a new object with attributes and blocks configured for the `small_multiples_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `small_multiples_limit_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.new` constructs a new object with attributes and blocks configured for the `small_multiples_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `small_multiples_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationsort_configurationsmall_multiples_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.sort_configuration.small_multiples_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.new` constructs a new object with attributes and blocks configured for the `value_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `value_label_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvalue_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.value_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.subtitle + + + +### fn definition.sheets.visuals.pie_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.pie_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.title + + + +### fn definition.sheets.visuals.pie_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualspie_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.pie_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.pie_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pie_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual + + + +### fn definition.sheets.visuals.pivot_table_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.new` constructs a new object with attributes and blocks configured for the `pivot_table_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `pivot_table_visual` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `field_options` (`list[obj]`): Set the `field_options` field on the resulting object. When `null`, the `field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualfield_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualfield_wellsnew) constructor. + - `paginated_report_options` (`list[obj]`): Set the `paginated_report_options` field on the resulting object. When `null`, the `paginated_report_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualpaginated_report_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualsort_configurationnew) constructor. + - `table_options` (`list[obj]`): Set the `table_options` field on the resulting object. When `null`, the `table_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualtable_optionsnew) constructor. + - `total_options` (`list[obj]`): Set the `total_options` field on the resulting object. When `null`, the `total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualtotal_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.new` constructs a new object with attributes and blocks configured for the `field_options` +Terraform sub block. + + + +**Args**: + - `data_path_options` (`list[obj]`): Set the `data_path_options` field on the resulting object. When `null`, the `data_path_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationdata_path_optionsnew) constructor. + - `selected_field_options` (`list[obj]`): Set the `selected_field_options` field on the resulting object. When `null`, the `selected_field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationselected_field_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.new` constructs a new object with attributes and blocks configured for the `data_path_options` +Terraform sub block. + + + +**Args**: + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `data_path_list` (`list[obj]`): Set the `data_path_list` field on the resulting object. When `null`, the `data_path_list` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_optionsdata_path_listnew) constructor. + +**Returns**: + - An attribute object that represents the `data_path_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.data_path_options.data_path_list.new` constructs a new object with attributes and blocks configured for the `data_path_list` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_list` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_options.selected_field_options.new` constructs a new object with attributes and blocks configured for the `selected_field_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_field_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `pivot_table_aggregated_field_wells` (`list[obj]`): Set the `pivot_table_aggregated_field_wells` field on the resulting object. When `null`, the `pivot_table_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationpivot_table_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `pivot_table_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellscolumnsnew) constructor. + - `rows` (`list[obj]`): Set the `rows` field on the resulting object. When `null`, the `rows` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellsrowsnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `pivot_table_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscolumnsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.columns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.new` constructs a new object with attributes and blocks configured for the `rows` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `rows` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsrowsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.rows.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_wellspivot_table_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.field_wells.pivot_table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.paginated_report_options.new` constructs a new object with attributes and blocks configured for the `paginated_report_options` +Terraform sub block. + + + +**Args**: + - `overflow_column_header_visibility` (`string`): Set the `overflow_column_header_visibility` field on the resulting object. When `null`, the `overflow_column_header_visibility` field will be omitted from the resulting object. + - `vertical_overflow_visibility` (`string`): Set the `vertical_overflow_visibility` field on the resulting object. When `null`, the `vertical_overflow_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `paginated_report_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `field_sort_options` (`list[obj]`): Set the `field_sort_options` field on the resulting object. When `null`, the `field_sort_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationfield_sort_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.new` constructs a new object with attributes and blocks configured for the `field_sort_options` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `field_sort_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionscolumnnew) constructor. + - `data_path` (`list[obj]`): Set the `data_path` field on the resulting object. When `null`, the `data_path` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionsdata_pathnew) constructor. + - `field` (`list[obj]`): Set the `field` field on the resulting object. When `null`, the `field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionsfieldnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_byaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bysort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bycolumnaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.column.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.new` constructs a new object with attributes and blocks configured for the `data_path` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `sort_paths` (`list[obj]`): Set the `sort_paths` field on the resulting object. When `null`, the `sort_paths` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationsort_configurationfield_sort_optionssort_bysort_pathsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_path` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.data_path.sort_paths.new` constructs a new object with attributes and blocks configured for the `sort_paths` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_paths` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.sort_configuration.field_sort_options.sort_by.field.new` constructs a new object with attributes and blocks configured for the `field` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.new` constructs a new object with attributes and blocks configured for the `table_options` +Terraform sub block. + + + +**Args**: + - `collapsed_row_dimensions_visibility` (`string`): Set the `collapsed_row_dimensions_visibility` field on the resulting object. When `null`, the `collapsed_row_dimensions_visibility` field will be omitted from the resulting object. + - `column_names_visibility` (`string`): Set the `column_names_visibility` field on the resulting object. When `null`, the `column_names_visibility` field will be omitted from the resulting object. + - `metric_placement` (`string`): Set the `metric_placement` field on the resulting object. When `null`, the `metric_placement` field will be omitted from the resulting object. + - `single_metric_visibility` (`string`): Set the `single_metric_visibility` field on the resulting object. When `null`, the `single_metric_visibility` field will be omitted from the resulting object. + - `toggle_buttons_visibility` (`string`): Set the `toggle_buttons_visibility` field on the resulting object. When `null`, the `toggle_buttons_visibility` field will be omitted from the resulting object. + - `cell_style` (`list[obj]`): Set the `cell_style` field on the resulting object. When `null`, the `cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcell_stylenew) constructor. + - `column_header_style` (`list[obj]`): Set the `column_header_style` field on the resulting object. When `null`, the `column_header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_header_stylenew) constructor. + - `row_alternate_color_options` (`list[obj]`): Set the `row_alternate_color_options` field on the resulting object. When `null`, the `row_alternate_color_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_alternate_color_optionsnew) constructor. + - `row_field_names_style` (`list[obj]`): Set the `row_field_names_style` field on the resulting object. When `null`, the `row_field_names_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_field_names_stylenew) constructor. + - `row_header_style` (`list[obj]`): Set the `row_header_style` field on the resulting object. When `null`, the `row_header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_header_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `table_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.new` constructs a new object with attributes and blocks configured for the `cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.new` constructs a new object with attributes and blocks configured for the `column_header_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `column_header_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionscolumn_header_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.column_header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_alternate_color_options.new` constructs a new object with attributes and blocks configured for the `row_alternate_color_options` +Terraform sub block. + + + +**Args**: + - `row_alternate_colors` (`list`): Set the `row_alternate_colors` field on the resulting object. When `null`, the `row_alternate_colors` field will be omitted from the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `row_alternate_color_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.new` constructs a new object with attributes and blocks configured for the `row_field_names_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `row_field_names_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_field_names_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_field_names_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.new` constructs a new object with attributes and blocks configured for the `row_header_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `row_header_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtable_optionsrow_header_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.table_options.row_header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.new` constructs a new object with attributes and blocks configured for the `total_options` +Terraform sub block. + + + +**Args**: + - `column_subtotal_options` (`list[obj]`): Set the `column_subtotal_options` field on the resulting object. When `null`, the `column_subtotal_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_subtotal_optionsnew) constructor. + - `column_total_options` (`list[obj]`): Set the `column_total_options` field on the resulting object. When `null`, the `column_total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationcolumn_total_optionsnew) constructor. + - `row_subtotal_options` (`list[obj]`): Set the `row_subtotal_options` field on the resulting object. When `null`, the `row_subtotal_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_subtotal_optionsnew) constructor. + - `row_total_options` (`list[obj]`): Set the `row_total_options` field on the resulting object. When `null`, the `row_total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationrow_total_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `total_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.new` constructs a new object with attributes and blocks configured for the `column_subtotal_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `field_level` (`string`): Set the `field_level` field on the resulting object. When `null`, the `field_level` field will be omitted from the resulting object. + - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object. + - `field_level_options` (`list[obj]`): Set the `field_level_options` field on the resulting object. When `null`, the `field_level_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsfield_level_optionsnew) constructor. + - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor. + - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor. + - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `column_subtotal_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.field_level_options.new` constructs a new object with attributes and blocks configured for the `field_level_options` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_level_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `metric_header_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsmetric_header_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `total_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionstotal_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_subtotal_optionsvalue_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_subtotal_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.new` constructs a new object with attributes and blocks configured for the `column_total_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object. + - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object. + - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object. + - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor. + - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor. + - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `column_total_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `metric_header_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsmetric_header_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `total_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionstotal_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionscolumn_total_optionsvalue_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.column_total_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.new` constructs a new object with attributes and blocks configured for the `row_subtotal_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `field_level` (`string`): Set the `field_level` field on the resulting object. When `null`, the `field_level` field will be omitted from the resulting object. + - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object. + - `field_level_options` (`list[obj]`): Set the `field_level_options` field on the resulting object. When `null`, the `field_level_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsfield_level_optionsnew) constructor. + - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor. + - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor. + - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `row_subtotal_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.field_level_options.new` constructs a new object with attributes and blocks configured for the `field_level_options` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_level_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `metric_header_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsmetric_header_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `total_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionstotal_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_subtotal_optionsvalue_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_subtotal_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.new` constructs a new object with attributes and blocks configured for the `row_total_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object. + - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object. + - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object. + - `metric_header_cell_style` (`list[obj]`): Set the `metric_header_cell_style` field on the resulting object. When `null`, the `metric_header_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsmetric_header_cell_stylenew) constructor. + - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionstotal_cell_stylenew) constructor. + - `value_cell_style` (`list[obj]`): Set the `value_cell_style` field on the resulting object. When `null`, the `value_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsvalue_cell_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `row_total_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.new` constructs a new object with attributes and blocks configured for the `metric_header_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `metric_header_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsmetric_header_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.metric_header_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `total_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionstotal_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.new` constructs a new object with attributes and blocks configured for the `value_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value_cell_style` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualchart_configurationtotal_optionsrow_total_optionsvalue_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.chart_configuration.total_options.row_total_options.value_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting` +Terraform sub block. + + + +**Args**: + - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formatting_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options` +Terraform sub block. + + + +**Args**: + - `cell` (`list[obj]`): Set the `cell` field on the resulting object. When `null`, the `cell` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingcellnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.new` constructs a new object with attributes and blocks configured for the `cell` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `scope` (`list[obj]`): Set the `scope` field on the resulting object. When `null`, the `scope` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionsscopenew) constructor. + - `text_format` (`list[obj]`): Set the `text_format` field on the resulting object. When `null`, the `text_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionstext_formatnew) constructor. + +**Returns**: + - An attribute object that represents the `cell` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.scope.new` constructs a new object with attributes and blocks configured for the `scope` +Terraform sub block. + + + +**Args**: + - `role` (`string`): Set the `role` field on the resulting object. When `null`, the `role` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `scope` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new` constructs a new object with attributes and blocks configured for the `text_format` +Terraform sub block. + + + +**Args**: + - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscellbackground_colornew) constructor. + - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelliconnew) constructor. + - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_colornew) constructor. + +**Returns**: + - An attribute object that represents the `text_format` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `background_color` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new` constructs a new object with attributes and blocks configured for the `icon` +Terraform sub block. + + + +**Args**: + - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatcustom_conditionnew) constructor. + - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticon_setnew) constructor. + +**Returns**: + - An attribute object that represents the `icon` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticondisplay_configurationnew) constructor. + - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_condition` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration` +Terraform sub block. + + + +**Args**: + - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `display_configuration` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options` +Terraform sub block. + + + +**Args**: + - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object. + - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_options` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_set` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new` constructs a new object with attributes and blocks configured for the `text_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `text_color` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid + + + +### fn definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.subtitle + + + +### fn definition.sheets.visuals.pivot_table_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.pivot_table_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.title + + + +### fn definition.sheets.visuals.pivot_table_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualspivot_table_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.pivot_table_visual.title.format_text + + + +### fn definition.sheets.visuals.pivot_table_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.pivot_table_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual + + + +### fn definition.sheets.visuals.radar_chart_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.new` constructs a new object with attributes and blocks configured for the `radar_chart_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `radar_chart_visual` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `alternate_band_colors_visibility` (`string`): Set the `alternate_band_colors_visibility` field on the resulting object. When `null`, the `alternate_band_colors_visibility` field will be omitted from the resulting object. + - `alternate_band_even_color` (`string`): Set the `alternate_band_even_color` field on the resulting object. When `null`, the `alternate_band_even_color` field will be omitted from the resulting object. + - `alternate_band_odd_color` (`string`): Set the `alternate_band_odd_color` field on the resulting object. When `null`, the `alternate_band_odd_color` field will be omitted from the resulting object. + - `shape` (`string`): Set the `shape` field on the resulting object. When `null`, the `shape` field will be omitted from the resulting object. + - `start_angle` (`number`): Set the `start_angle` field on the resulting object. When `null`, the `start_angle` field will be omitted from the resulting object. + - `base_series_settings` (`list[obj]`): Set the `base_series_settings` field on the resulting object. When `null`, the `base_series_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualbase_series_settingsnew) constructor. + - `category_axis` (`list[obj]`): Set the `category_axis` field on the resulting object. When `null`, the `category_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcategory_axisnew) constructor. + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcategory_label_optionsnew) constructor. + - `color_axis` (`list[obj]`): Set the `color_axis` field on the resulting object. When `null`, the `color_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolor_axisnew) constructor. + - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolor_label_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visuallegendnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualsort_configurationnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualvisual_palettenew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.new` constructs a new object with attributes and blocks configured for the `base_series_settings` +Terraform sub block. + + + +**Args**: + - `area_style_settings` (`list[obj]`): Set the `area_style_settings` field on the resulting object. When `null`, the `area_style_settings` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationarea_style_settingsnew) constructor. + +**Returns**: + - An attribute object that represents the `base_series_settings` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.base_series_settings.area_style_settings.new` constructs a new object with attributes and blocks configured for the `area_style_settings` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `area_style_settings` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.new` constructs a new object with attributes and blocks configured for the `category_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.new` constructs a new object with attributes and blocks configured for the `color_axis` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `color_axis` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axisscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axislabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_axistick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_axis.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `color_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `radar_chart_aggregated_field_wells` (`list[obj]`): Set the `radar_chart_aggregated_field_wells` field on the resulting object. When `null`, the `radar_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationradar_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `radar_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellscategorynew) constructor. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellscolornew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `radar_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolordate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolorformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscolornumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.color.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationfield_wellsradar_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.field_wells.radar_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcategory_sortnew) constructor. + - `color_items_limit` (`list[obj]`): Set the `color_items_limit` field on the resulting object. When `null`, the `color_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_items_limitnew) constructor. + - `color_sort` (`list[obj]`): Set the `color_sort` field on the resulting object. When `null`, the `color_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_items_limit.new` constructs a new object with attributes and blocks configured for the `color_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `color_items_limit` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.new` constructs a new object with attributes and blocks configured for the `color_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `color_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationsort_configurationcolor_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.sort_configuration.color_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.subtitle + + + +### fn definition.sheets.visuals.radar_chart_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.radar_chart_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.title + + + +### fn definition.sheets.visuals.radar_chart_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsradar_chart_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.radar_chart_visual.title.format_text + + + +### fn definition.sheets.visuals.radar_chart_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.radar_chart_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual + + + +### fn definition.sheets.visuals.sankey_diagram_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.new` constructs a new object with attributes and blocks configured for the `sankey_diagram_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `sankey_diagram_visual` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualfield_wellsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualsort_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `sankey_diagram_aggregated_field_wells` (`list[obj]`): Set the `sankey_diagram_aggregated_field_wells` field on the resulting object. When `null`, the `sankey_diagram_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsankey_diagram_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `sankey_diagram_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `destination` (`list[obj]`): Set the `destination` field on the resulting object. When `null`, the `destination` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellsdestinationnew) constructor. + - `source` (`list[obj]`): Set the `source` field on the resulting object. When `null`, the `source` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssourcenew) constructor. + - `weight` (`list[obj]`): Set the `weight` field on the resulting object. When `null`, the `weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellsweightnew) constructor. + +**Returns**: + - An attribute object that represents the `sankey_diagram_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.new` constructs a new object with attributes and blocks configured for the `destination` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `destination` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdestinationnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.destination.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.new` constructs a new object with attributes and blocks configured for the `source` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `source` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcedate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourceformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellssourcenumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.source.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.new` constructs a new object with attributes and blocks configured for the `weight` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `weight` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightcolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationfield_wellssankey_diagram_aggregated_field_wellsweightnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.field_wells.sankey_diagram_aggregated_field_wells.weight.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `destination_items_limit` (`list[obj]`): Set the `destination_items_limit` field on the resulting object. When `null`, the `destination_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationdestination_items_limitnew) constructor. + - `source_items_limit` (`list[obj]`): Set the `source_items_limit` field on the resulting object. When `null`, the `source_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsource_items_limitnew) constructor. + - `weight_sort` (`list[obj]`): Set the `weight_sort` field on the resulting object. When `null`, the `weight_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationweight_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.destination_items_limit.new` constructs a new object with attributes and blocks configured for the `destination_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `destination_items_limit` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.source_items_limit.new` constructs a new object with attributes and blocks configured for the `source_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `source_items_limit` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.new` constructs a new object with attributes and blocks configured for the `weight_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `weight_sort` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualchart_configurationsort_configurationweight_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort + + + +### fn definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.chart_configuration.sort_configuration.weight_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.subtitle + + + +### fn definition.sheets.visuals.sankey_diagram_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.title + + + +### fn definition.sheets.visuals.sankey_diagram_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualssankey_diagram_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.sankey_diagram_visual.title.format_text + + + +### fn definition.sheets.visuals.sankey_diagram_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.sankey_diagram_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual + + + +### fn definition.sheets.visuals.scatter_plot_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.new` constructs a new object with attributes and blocks configured for the `scatter_plot_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `scatter_plot_visual` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visuallegendnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualtooltipnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualvisual_palettenew) constructor. + - `x_axis_display_options` (`list[obj]`): Set the `x_axis_display_options` field on the resulting object. When `null`, the `x_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualx_axis_display_optionsnew) constructor. + - `x_axis_label_options` (`list[obj]`): Set the `x_axis_label_options` field on the resulting object. When `null`, the `x_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualx_axis_label_optionsnew) constructor. + - `y_axis_display_options` (`list[obj]`): Set the `y_axis_display_options` field on the resulting object. When `null`, the `y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualy_axis_display_optionsnew) constructor. + - `y_axis_label_options` (`list[obj]`): Set the `y_axis_label_options` field on the resulting object. When `null`, the `y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualy_axis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `scatter_plot_categorically_aggregated_field_wells` (`list[obj]`): Set the `scatter_plot_categorically_aggregated_field_wells` field on the resulting object. When `null`, the `scatter_plot_categorically_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscatter_plot_categorically_aggregated_field_wellsnew) constructor. + - `scatter_plot_unaggregated_field_wells` (`list[obj]`): Set the `scatter_plot_unaggregated_field_wells` field on the resulting object. When `null`, the `scatter_plot_unaggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscatter_plot_unaggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `scatter_plot_categorically_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `category` (`list[obj]`): Set the `category` field on the resulting object. When `null`, the `category` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellscategorynew) constructor. + - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellssizenew) constructor. + - `x_axis` (`list[obj]`): Set the `x_axis` field on the resulting object. When `null`, the `x_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsx_axisnew) constructor. + - `y_axis` (`list[obj]`): Set the `y_axis` field on the resulting object. When `null`, the `y_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsy_axisnew) constructor. + +**Returns**: + - An attribute object that represents the `scatter_plot_categorically_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.new` constructs a new object with attributes and blocks configured for the `category` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `category` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategoryformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.category.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.new` constructs a new object with attributes and blocks configured for the `x_axis` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsx_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.x_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.new` constructs a new object with attributes and blocks configured for the `y_axis` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `y_axis` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_categorically_aggregated_field_wellsy_axisnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_categorically_aggregated_field_wells.y_axis.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `scatter_plot_unaggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellssizenew) constructor. + - `x_axis` (`list[obj]`): Set the `x_axis` field on the resulting object. When `null`, the `x_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsx_axisnew) constructor. + - `y_axis` (`list[obj]`): Set the `y_axis` field on the resulting object. When `null`, the `y_axis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsy_axisnew) constructor. + +**Returns**: + - An attribute object that represents the `scatter_plot_unaggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.new` constructs a new object with attributes and blocks configured for the `x_axis` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsx_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.x_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.new` constructs a new object with attributes and blocks configured for the `y_axis` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `y_axis` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axiscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_wellsscatter_plot_unaggregated_field_wellsy_axisnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.field_wells.scatter_plot_unaggregated_field_wells.y_axis.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.new` constructs a new object with attributes and blocks configured for the `x_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_display_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.new` constructs a new object with attributes and blocks configured for the `x_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `x_axis_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationx_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.x_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualchart_configurationy_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.chart_configuration.y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.subtitle + + + +### fn definition.sheets.visuals.scatter_plot_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.scatter_plot_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.title + + + +### fn definition.sheets.visuals.scatter_plot_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsscatter_plot_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.scatter_plot_visual.title.format_text + + + +### fn definition.sheets.visuals.scatter_plot_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.scatter_plot_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.table_visual + + + +### fn definition.sheets.visuals.table_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.new` constructs a new object with attributes and blocks configured for the `table_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `conditional_formatting` (`list[obj]`): Set the `conditional_formatting` field on the resulting object. When `null`, the `conditional_formatting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.new](#fn-definitiondefinitionsheetsvisualsconditional_formattingnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `table_visual` sub block. + + +## obj definition.sheets.visuals.table_visual.actions + + + +### fn definition.sheets.visuals.table_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualstable_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualstable_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.table_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.table_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `field_options` (`list[obj]`): Set the `field_options` field on the resulting object. When `null`, the `field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.new](#fn-definitiondefinitionsheetsvisualstable_visualfield_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualfield_wellsnew) constructor. + - `paginated_report_options` (`list[obj]`): Set the `paginated_report_options` field on the resulting object. When `null`, the `paginated_report_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options.new](#fn-definitiondefinitionsheetsvisualstable_visualpaginated_report_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualsort_configurationnew) constructor. + - `table_inline_visualizations` (`list[obj]`): Set the `table_inline_visualizations` field on the resulting object. When `null`, the `table_inline_visualizations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.new](#fn-definitiondefinitionsheetsvisualstable_visualtable_inline_visualizationsnew) constructor. + - `table_options` (`list[obj]`): Set the `table_options` field on the resulting object. When `null`, the `table_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.new](#fn-definitiondefinitionsheetsvisualstable_visualtable_optionsnew) constructor. + - `total_options` (`list[obj]`): Set the `total_options` field on the resulting object. When `null`, the `total_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.new](#fn-definitiondefinitionsheetsvisualstable_visualtotal_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.new` constructs a new object with attributes and blocks configured for the `field_options` +Terraform sub block. + + + +**Args**: + - `order` (`list`): Set the `order` field on the resulting object. When `null`, the `order` field will be omitted from the resulting object. + - `selected_field_options` (`list[obj]`): Set the `selected_field_options` field on the resulting object. When `null`, the `selected_field_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationselected_field_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.new` constructs a new object with attributes and blocks configured for the `selected_field_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `url_styling` (`list[obj]`): Set the `url_styling` field on the resulting object. When `null`, the `url_styling` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsurl_stylingnew) constructor. + +**Returns**: + - An attribute object that represents the `selected_field_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.new` constructs a new object with attributes and blocks configured for the `url_styling` +Terraform sub block. + + + +**Args**: + - `image_configuration` (`list[obj]`): Set the `image_configuration` field on the resulting object. When `null`, the `image_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsimage_configurationnew) constructor. + - `link_configuration` (`list[obj]`): Set the `link_configuration` field on the resulting object. When `null`, the `link_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionslink_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `url_styling` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.new` constructs a new object with attributes and blocks configured for the `image_configuration` +Terraform sub block. + + + +**Args**: + - `sizing_options` (`list[obj]`): Set the `sizing_options` field on the resulting object. When `null`, the `sizing_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingsizing_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `image_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.image_configuration.sizing_options.new` constructs a new object with attributes and blocks configured for the `sizing_options` +Terraform sub block. + + + +**Args**: + - `table_cell_image_scaling_configuration` (`string`): Set the `table_cell_image_scaling_configuration` field on the resulting object. When `null`, the `table_cell_image_scaling_configuration` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `sizing_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.new` constructs a new object with attributes and blocks configured for the `link_configuration` +Terraform sub block. + + + +**Args**: + - `target` (`string`): Set the `target` field on the resulting object. When `null`, the `target` field will be omitted from the resulting object. + - `content` (`list[obj]`): Set the `content` field on the resulting object. When `null`, the `content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylingcontentnew) constructor. + +**Returns**: + - An attribute object that represents the `link_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.new` constructs a new object with attributes and blocks configured for the `content` +Terraform sub block. + + + +**Args**: + - `custom_icon_content` (`list[obj]`): Set the `custom_icon_content` field on the resulting object. When `null`, the `custom_icon_content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcustom_icon_contentnew) constructor. + - `custom_text_content` (`list[obj]`): Set the `custom_text_content` field on the resulting object. When `null`, the `custom_text_content` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcustom_text_contentnew) constructor. + +**Returns**: + - An attribute object that represents the `content` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_icon_content.new` constructs a new object with attributes and blocks configured for the `custom_icon_content` +Terraform sub block. + + + +**Args**: + - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_icon_content` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.new` constructs a new object with attributes and blocks configured for the `custom_text_content` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. When `null`, the `value` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_text_content` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_optionsselected_field_optionsurl_stylinglink_configurationcontentcustom_text_contentfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_options.selected_field_options.url_styling.link_configuration.content.custom_text_content.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `table_aggregated_field_wells` (`list[obj]`): Set the `table_aggregated_field_wells` field on the resulting object. When `null`, the `table_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_aggregated_field_wellsnew) constructor. + - `table_unaggregated_field_wells` (`list[obj]`): Set the `table_unaggregated_field_wells` field on the resulting object. When `null`, the `table_unaggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_unaggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `table_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsgroup_bynew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `table_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `group_by` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `table_unaggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `table_unaggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format_configuration` (`list[obj]`): Set the `date_time_format_configuration` field on the resulting object. When `null`, the `date_time_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesdate_time_format_configurationnew) constructor. + - `number_format_configuration` (`list[obj]`): Set the `number_format_configuration` field on the resulting object. When `null`, the `number_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesnumber_format_configurationnew) constructor. + - `string_format_configuration` (`list[obj]`): Set the `string_format_configuration` field on the resulting object. When `null`, the `string_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesstring_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.new` constructs a new object with attributes and blocks configured for the `date_time_format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationdate_time_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.date_time_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumber_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.number_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.new` constructs a new object with attributes and blocks configured for the `string_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `string_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationfield_wellstable_unaggregated_field_wellsvaluesformat_configurationstring_format_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.field_wells.table_unaggregated_field_wells.values.format_configuration.string_format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.paginated_report_options.new` constructs a new object with attributes and blocks configured for the `paginated_report_options` +Terraform sub block. + + + +**Args**: + - `overflow_column_header_visibility` (`string`): Set the `overflow_column_header_visibility` field on the resulting object. When `null`, the `overflow_column_header_visibility` field will be omitted from the resulting object. + - `vertical_overflow_visibility` (`string`): Set the `vertical_overflow_visibility` field on the resulting object. When `null`, the `vertical_overflow_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `paginated_report_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `pagination_configuration` (`list[obj]`): Set the `pagination_configuration` field on the resulting object. When `null`, the `pagination_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationpagination_configurationnew) constructor. + - `row_sort` (`list[obj]`): Set the `row_sort` field on the resulting object. When `null`, the `row_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationrow_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.pagination_configuration.new` constructs a new object with attributes and blocks configured for the `pagination_configuration` +Terraform sub block. + + + +**Args**: + - `page_number` (`number`): Set the `page_number` field on the resulting object. + - `page_size` (`number`): Set the `page_size` field on the resulting object. + +**Returns**: + - An attribute object that represents the `pagination_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.new` constructs a new object with attributes and blocks configured for the `row_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `row_sort` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationsort_configurationrow_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.sort_configuration.row_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.new` constructs a new object with attributes and blocks configured for the `table_inline_visualizations` +Terraform sub block. + + + +**Args**: + - `data_bars` (`list[obj]`): Set the `data_bars` field on the resulting object. When `null`, the `data_bars` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationdata_barsnew) constructor. + +**Returns**: + - An attribute object that represents the `table_inline_visualizations` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_inline_visualizations.data_bars.new` constructs a new object with attributes and blocks configured for the `data_bars` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `negative_color` (`string`): Set the `negative_color` field on the resulting object. When `null`, the `negative_color` field will be omitted from the resulting object. + - `positive_color` (`string`): Set the `positive_color` field on the resulting object. When `null`, the `positive_color` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_bars` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.new` constructs a new object with attributes and blocks configured for the `table_options` +Terraform sub block. + + + +**Args**: + - `orientation` (`string`): Set the `orientation` field on the resulting object. When `null`, the `orientation` field will be omitted from the resulting object. + - `cell_style` (`list[obj]`): Set the `cell_style` field on the resulting object. When `null`, the `cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationcell_stylenew) constructor. + - `header_style` (`list[obj]`): Set the `header_style` field on the resulting object. When `null`, the `header_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationheader_stylenew) constructor. + - `row_alternate_color_options` (`list[obj]`): Set the `row_alternate_color_options` field on the resulting object. When `null`, the `row_alternate_color_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationrow_alternate_color_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `table_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.new` constructs a new object with attributes and blocks configured for the `cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `cell_style` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionscell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.new` constructs a new object with attributes and blocks configured for the `header_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `header_style` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtable_optionsheader_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.header_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.table_options.row_alternate_color_options.new` constructs a new object with attributes and blocks configured for the `row_alternate_color_options` +Terraform sub block. + + + +**Args**: + - `row_alternate_colors` (`list`): Set the `row_alternate_colors` field on the resulting object. When `null`, the `row_alternate_colors` field will be omitted from the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. When `null`, the `status` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `row_alternate_color_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.new` constructs a new object with attributes and blocks configured for the `total_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `placement` (`string`): Set the `placement` field on the resulting object. When `null`, the `placement` field will be omitted from the resulting object. + - `scroll_status` (`string`): Set the `scroll_status` field on the resulting object. When `null`, the `scroll_status` field will be omitted from the resulting object. + - `totals_visibility` (`string`): Set the `totals_visibility` field on the resulting object. When `null`, the `totals_visibility` field will be omitted from the resulting object. + - `total_cell_style` (`list[obj]`): Set the `total_cell_style` field on the resulting object. When `null`, the `total_cell_style` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_cell_stylenew) constructor. + +**Returns**: + - An attribute object that represents the `total_options` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.new` constructs a new object with attributes and blocks configured for the `total_cell_style` +Terraform sub block. + + + +**Args**: + - `background_color` (`string`): Set the `background_color` field on the resulting object. When `null`, the `background_color` field will be omitted from the resulting object. + - `height` (`number`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `horizontal_text_alignment` (`string`): Set the `horizontal_text_alignment` field on the resulting object. When `null`, the `horizontal_text_alignment` field will be omitted from the resulting object. + - `text_wrap` (`string`): Set the `text_wrap` field on the resulting object. When `null`, the `text_wrap` field will be omitted from the resulting object. + - `vertical_text_alignment` (`string`): Set the `vertical_text_alignment` field on the resulting object. When `null`, the `vertical_text_alignment` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `border` (`list[obj]`): Set the `border` field on the resulting object. When `null`, the `border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionsbordernew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `total_cell_style` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.new` constructs a new object with attributes and blocks configured for the `border` +Terraform sub block. + + + +**Args**: + - `side_specific_border` (`list[obj]`): Set the `side_specific_border` field on the resulting object. When `null`, the `side_specific_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleside_specific_bordernew) constructor. + - `uniform_border` (`list[obj]`): Set the `uniform_border` field on the resulting object. When `null`, the `uniform_border` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleuniform_bordernew) constructor. + +**Returns**: + - An attribute object that represents the `border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.new` constructs a new object with attributes and blocks configured for the `side_specific_border` +Terraform sub block. + + + +**Args**: + - `bottom` (`list[obj]`): Set the `bottom` field on the resulting object. When `null`, the `bottom` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderbottomnew) constructor. + - `inner_horizontal` (`list[obj]`): Set the `inner_horizontal` field on the resulting object. When `null`, the `inner_horizontal` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderinner_horizontalnew) constructor. + - `inner_vertical` (`list[obj]`): Set the `inner_vertical` field on the resulting object. When `null`, the `inner_vertical` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderinner_verticalnew) constructor. + - `left` (`list[obj]`): Set the `left` field on the resulting object. When `null`, the `left` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderleftnew) constructor. + - `right` (`list[obj]`): Set the `right` field on the resulting object. When `null`, the `right` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_styleborderrightnew) constructor. + - `top` (`list[obj]`): Set the `top` field on the resulting object. When `null`, the `top` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylebordertopnew) constructor. + +**Returns**: + - An attribute object that represents the `side_specific_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.bottom.new` constructs a new object with attributes and blocks configured for the `bottom` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `bottom` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_horizontal.new` constructs a new object with attributes and blocks configured for the `inner_horizontal` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_horizontal` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.inner_vertical.new` constructs a new object with attributes and blocks configured for the `inner_vertical` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `inner_vertical` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.left.new` constructs a new object with attributes and blocks configured for the `left` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `left` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.right.new` constructs a new object with attributes and blocks configured for the `right` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `right` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.side_specific_border.top.new` constructs a new object with attributes and blocks configured for the `top` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `top` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.border.uniform_border.new` constructs a new object with attributes and blocks configured for the `uniform_border` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `style` (`string`): Set the `style` field on the resulting object. When `null`, the `style` field will be omitted from the resulting object. + - `thickness` (`number`): Set the `thickness` field on the resulting object. When `null`, the `thickness` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `uniform_border` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstable_visualchart_configurationtotal_optionstotal_cell_stylefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight + + + +### fn definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.chart_configuration.total_options.total_cell_style.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.new` constructs a new object with attributes and blocks configured for the `conditional_formatting` +Terraform sub block. + + + +**Args**: + - `conditional_formatting_options` (`list[obj]`): Set the `conditional_formatting_options` field on the resulting object. When `null`, the `conditional_formatting_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formatting_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.new` constructs a new object with attributes and blocks configured for the `conditional_formatting_options` +Terraform sub block. + + + +**Args**: + - `cell` (`list[obj]`): Set the `cell` field on the resulting object. When `null`, the `cell` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingcellnew) constructor. + - `row` (`list[obj]`): Set the `row` field on the resulting object. When `null`, the `row` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingrownew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_formatting_options` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.new` constructs a new object with attributes and blocks configured for the `cell` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `text_format` (`list[obj]`): Set the `text_format` field on the resulting object. When `null`, the `text_format` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionstext_formatnew) constructor. + +**Returns**: + - An attribute object that represents the `cell` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.new` constructs a new object with attributes and blocks configured for the `text_format` +Terraform sub block. + + + +**Args**: + - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscellbackground_colornew) constructor. + - `icon` (`list[obj]`): Set the `icon` field on the resulting object. When `null`, the `icon` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelliconnew) constructor. + - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_colornew) constructor. + +**Returns**: + - An attribute object that represents the `text_format` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.new` constructs a new object with attributes and blocks configured for the `background_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `background_color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatbackground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.new` constructs a new object with attributes and blocks configured for the `icon` +Terraform sub block. + + + +**Args**: + - `custom_condition` (`list[obj]`): Set the `custom_condition` field on the resulting object. When `null`, the `custom_condition` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatcustom_conditionnew) constructor. + - `icon_set` (`list[obj]`): Set the `icon_set` field on the resulting object. When `null`, the `icon_set` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticon_setnew) constructor. + +**Returns**: + - An attribute object that represents the `icon` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.new` constructs a new object with attributes and blocks configured for the `custom_condition` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + - `display_configuration` (`list[obj]`): Set the `display_configuration` field on the resulting object. When `null`, the `display_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticondisplay_configurationnew) constructor. + - `icon_options` (`list[obj]`): Set the `icon_options` field on the resulting object. When `null`, the `icon_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formaticonicon_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_condition` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.display_configuration.new` constructs a new object with attributes and blocks configured for the `display_configuration` +Terraform sub block. + + + +**Args**: + - `icon_display_option` (`string`): Set the `icon_display_option` field on the resulting object. When `null`, the `icon_display_option` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `display_configuration` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.custom_condition.icon_options.new` constructs a new object with attributes and blocks configured for the `icon_options` +Terraform sub block. + + + +**Args**: + - `icon` (`string`): Set the `icon` field on the resulting object. When `null`, the `icon` field will be omitted from the resulting object. + - `unicode_icon` (`string`): Set the `unicode_icon` field on the resulting object. When `null`, the `unicode_icon` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_options` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.icon.icon_set.new` constructs a new object with attributes and blocks configured for the `icon_set` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `icon_set_type` (`string`): Set the `icon_set_type` field on the resulting object. When `null`, the `icon_set_type` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `icon_set` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.new` constructs a new object with attributes and blocks configured for the `text_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formatsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `text_color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionscelltext_formattext_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.cell.text_format.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.new` constructs a new object with attributes and blocks configured for the `row` +Terraform sub block. + + + +**Args**: + - `background_color` (`list[obj]`): Set the `background_color` field on the resulting object. When `null`, the `background_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsbackground_colornew) constructor. + - `text_color` (`list[obj]`): Set the `text_color` field on the resulting object. When `null`, the `text_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionstext_colornew) constructor. + +**Returns**: + - An attribute object that represents the `row` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.new` constructs a new object with attributes and blocks configured for the `background_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `background_color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowbackground_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.background_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.new` constructs a new object with attributes and blocks configured for the `text_color` +Terraform sub block. + + + +**Args**: + - `gradient` (`list[obj]`): Set the `gradient` field on the resulting object. When `null`, the `gradient` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowgradientnew) constructor. + - `solid` (`list[obj]`): Set the `solid` field on the resulting object. When `null`, the `solid` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowsolidnew) constructor. + +**Returns**: + - An attribute object that represents the `text_color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.new` constructs a new object with attributes and blocks configured for the `gradient` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `color` (`list[obj]`): Set the `color` field on the resulting object. When `null`, the `color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorcolornew) constructor. + +**Returns**: + - An attribute object that represents the `gradient` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.new` constructs a new object with attributes and blocks configured for the `color` +Terraform sub block. + + + +**Args**: + - `stops` (`list[obj]`): Set the `stops` field on the resulting object. When `null`, the `stops` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops.new](#fn-definitiondefinitionsheetsvisualstable_visualconditional_formattingconditional_formatting_optionsrowtext_colorgradientstopsnew) constructor. + +**Returns**: + - An attribute object that represents the `color` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.gradient.color.stops.new` constructs a new object with attributes and blocks configured for the `stops` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + - `gradient_offset` (`number`): Set the `gradient_offset` field on the resulting object. + +**Returns**: + - An attribute object that represents the `stops` sub block. + + +## obj definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid + + + +### fn definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.conditional_formatting.conditional_formatting_options.row.text_color.solid.new` constructs a new object with attributes and blocks configured for the `solid` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `expression` (`string`): Set the `expression` field on the resulting object. + +**Returns**: + - An attribute object that represents the `solid` sub block. + + +## obj definition.sheets.visuals.table_visual.subtitle + + + +### fn definition.sheets.visuals.table_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualstable_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.table_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.table_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.table_visual.title + + + +### fn definition.sheets.visuals.table_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.table_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualstable_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.table_visual.title.format_text + + + +### fn definition.sheets.visuals.table_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.table_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.tree_map_visual + + + +### fn definition.sheets.visuals.tree_map_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.new` constructs a new object with attributes and blocks configured for the `tree_map_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `tree_map_visual` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions + + + +### fn definition.sheets.visuals.tree_map_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualstree_map_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualstree_map_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `color_label_options` (`list[obj]`): Set the `color_label_options` field on the resulting object. When `null`, the `color_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolor_label_optionsnew) constructor. + - `color_scale` (`list[obj]`): Set the `color_scale` field on the resulting object. When `null`, the `color_scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolor_scalenew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualstree_map_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualstree_map_visualfield_wellsnew) constructor. + - `group_label_options` (`list[obj]`): Set the `group_label_options` field on the resulting object. When `null`, the `group_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualgroup_label_optionsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualstree_map_visuallegendnew) constructor. + - `size_label_options` (`list[obj]`): Set the `size_label_options` field on the resulting object. When `null`, the `size_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualsize_label_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualsort_configurationnew) constructor. + - `tooltip` (`list[obj]`): Set the `tooltip` field on the resulting object. When `null`, the `tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.new](#fn-definitiondefinitionsheetsvisualstree_map_visualtooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.new` constructs a new object with attributes and blocks configured for the `color_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `color_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolor_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.new` constructs a new object with attributes and blocks configured for the `color_scale` +Terraform sub block. + + + +**Args**: + - `color_fill_type` (`string`): Set the `color_fill_type` field on the resulting object. + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationcolorsnew) constructor. + - `null_value_color` (`list[obj]`): Set the `null_value_color` field on the resulting object. When `null`, the `null_value_color` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationnull_value_colornew) constructor. + +**Returns**: + - An attribute object that represents the `color_scale` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.color_scale.null_value_color.new` constructs a new object with attributes and blocks configured for the `null_value_color` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. When `null`, the `color` field will be omitted from the resulting object. + - `data_value` (`number`): Set the `data_value` field on the resulting object. When `null`, the `data_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_color` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `tree_map_aggregated_field_wells` (`list[obj]`): Set the `tree_map_aggregated_field_wells` field on the resulting object. When `null`, the `tree_map_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `tree_map_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `colors` (`list[obj]`): Set the `colors` field on the resulting object. When `null`, the `colors` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellscolorsnew) constructor. + - `groups` (`list[obj]`): Set the `groups` field on the resulting object. When `null`, the `groups` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellsgroupsnew) constructor. + - `sizes` (`list[obj]`): Set the `sizes` field on the resulting object. When `null`, the `sizes` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellssizesnew) constructor. + +**Returns**: + - An attribute object that represents the `tree_map_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.new` constructs a new object with attributes and blocks configured for the `colors` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `colors` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscolorsnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.colors.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.new` constructs a new object with attributes and blocks configured for the `groups` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `groups` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsgroupsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.groups.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.new` constructs a new object with attributes and blocks configured for the `sizes` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `sizes` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_wellstree_map_aggregated_field_wellssizesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.field_wells.tree_map_aggregated_field_wells.sizes.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.new` constructs a new object with attributes and blocks configured for the `group_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `group_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationgroup_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.group_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.new` constructs a new object with attributes and blocks configured for the `size_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `size_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsize_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.size_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `tree_map_group_items_limit_configuration` (`list[obj]`): Set the `tree_map_group_items_limit_configuration` field on the resulting object. When `null`, the `tree_map_group_items_limit_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_group_items_limit_configurationnew) constructor. + - `tree_map_sort` (`list[obj]`): Set the `tree_map_sort` field on the resulting object. When `null`, the `tree_map_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtree_map_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_group_items_limit_configuration.new` constructs a new object with attributes and blocks configured for the `tree_map_group_items_limit_configuration` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `tree_map_group_items_limit_configuration` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.new` constructs a new object with attributes and blocks configured for the `tree_map_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `tree_map_sort` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationsort_configurationtree_map_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.sort_configuration.tree_map_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.new` constructs a new object with attributes and blocks configured for the `tooltip` +Terraform sub block. + + + +**Args**: + - `selected_tooltip_type` (`string`): Set the `selected_tooltip_type` field on the resulting object. When `null`, the `selected_tooltip_type` field will be omitted from the resulting object. + - `tooltip_visibility` (`string`): Set the `tooltip_visibility` field on the resulting object. When `null`, the `tooltip_visibility` field will be omitted from the resulting object. + - `field_base_tooltip` (`list[obj]`): Set the `field_base_tooltip` field on the resulting object. When `null`, the `field_base_tooltip` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationfield_base_tooltipnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.new` constructs a new object with attributes and blocks configured for the `field_base_tooltip` +Terraform sub block. + + + +**Args**: + - `aggregation_visibility` (`string`): Set the `aggregation_visibility` field on the resulting object. When `null`, the `aggregation_visibility` field will be omitted from the resulting object. + - `tooltip_title_type` (`string`): Set the `tooltip_title_type` field on the resulting object. When `null`, the `tooltip_title_type` field will be omitted from the resulting object. + - `tooltip_fields` (`list[obj]`): Set the `tooltip_fields` field on the resulting object. When `null`, the `tooltip_fields` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltiptooltip_fieldsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_base_tooltip` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.new` constructs a new object with attributes and blocks configured for the `tooltip_fields` +Terraform sub block. + + + +**Args**: + - `column_tooltip_item` (`list[obj]`): Set the `column_tooltip_item` field on the resulting object. When `null`, the `column_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltipcolumn_tooltip_itemnew) constructor. + - `field_tooltip_item` (`list[obj]`): Set the `field_tooltip_item` field on the resulting object. When `null`, the `field_tooltip_item` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltipfield_tooltip_itemnew) constructor. + +**Returns**: + - An attribute object that represents the `tooltip_fields` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.new` constructs a new object with attributes and blocks configured for the `column_tooltip_item` +Terraform sub block. + + + +**Args**: + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `aggregation` (`list[obj]`): Set the `aggregation` field on the resulting object. When `null`, the `aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldsaggregationnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `column_tooltip_item` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.new` constructs a new object with attributes and blocks configured for the `aggregation` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualstree_map_visualchart_configurationtooltipfield_base_tooltiptooltip_fieldscolumn_tooltip_itemaggregationpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.aggregation.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.column_tooltip_item.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item + + + +### fn definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.chart_configuration.tooltip.field_base_tooltip.tooltip_fields.field_tooltip_item.new` constructs a new object with attributes and blocks configured for the `field_tooltip_item` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `label` (`string`): Set the `label` field on the resulting object. When `null`, the `label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_tooltip_item` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualstree_map_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualstree_map_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.subtitle + + + +### fn definition.sheets.visuals.tree_map_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualstree_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.tree_map_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.title + + + +### fn definition.sheets.visuals.tree_map_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualstree_map_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.tree_map_visual.title.format_text + + + +### fn definition.sheets.visuals.tree_map_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.tree_map_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.waterfall_visual + + + +### fn definition.sheets.visuals.waterfall_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.new` constructs a new object with attributes and blocks configured for the `waterfall_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `waterfall_visual` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions + + + +### fn definition.sheets.visuals.waterfall_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `category_axis_display_options` (`list[obj]`): Set the `category_axis_display_options` field on the resulting object. When `null`, the `category_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcategory_axis_display_optionsnew) constructor. + - `category_axis_label_options` (`list[obj]`): Set the `category_axis_label_options` field on the resulting object. When `null`, the `category_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcategory_axis_label_optionsnew) constructor. + - `data_labels` (`list[obj]`): Set the `data_labels` field on the resulting object. When `null`, the `data_labels` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualdata_labelsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualfield_wellsnew) constructor. + - `legend` (`list[obj]`): Set the `legend` field on the resulting object. When `null`, the `legend` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.new](#fn-definitiondefinitionsheetsvisualswaterfall_visuallegendnew) constructor. + - `primary_y_axis_display_options` (`list[obj]`): Set the `primary_y_axis_display_options` field on the resulting object. When `null`, the `primary_y_axis_display_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualprimary_y_axis_display_optionsnew) constructor. + - `primary_y_axis_label_options` (`list[obj]`): Set the `primary_y_axis_label_options` field on the resulting object. When `null`, the `primary_y_axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualprimary_y_axis_label_optionsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualsort_configurationnew) constructor. + - `visual_palette` (`list[obj]`): Set the `visual_palette` field on the resulting object. When `null`, the `visual_palette` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualvisual_palettenew) constructor. + - `waterfall_chart_options` (`list[obj]`): Set the `waterfall_chart_options` field on the resulting object. When `null`, the `waterfall_chart_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualwaterfall_chart_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.new` constructs a new object with attributes and blocks configured for the `category_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis_display_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.new` constructs a new object with attributes and blocks configured for the `category_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_axis_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.category_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.new` constructs a new object with attributes and blocks configured for the `data_labels` +Terraform sub block. + + + +**Args**: + - `category_label_visibility` (`string`): Set the `category_label_visibility` field on the resulting object. When `null`, the `category_label_visibility` field will be omitted from the resulting object. + - `label_color` (`string`): Set the `label_color` field on the resulting object. When `null`, the `label_color` field will be omitted from the resulting object. + - `label_content` (`string`): Set the `label_content` field on the resulting object. When `null`, the `label_content` field will be omitted from the resulting object. + - `measure_label_visibility` (`string`): Set the `measure_label_visibility` field on the resulting object. When `null`, the `measure_label_visibility` field will be omitted from the resulting object. + - `overlap` (`string`): Set the `overlap` field on the resulting object. When `null`, the `overlap` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `data_label_types` (`list[obj]`): Set the `data_label_types` field on the resulting object. When `null`, the `data_label_types` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_label_typesnew) constructor. + - `label_font_configuration` (`list[obj]`): Set the `label_font_configuration` field on the resulting object. When `null`, the `label_font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlabel_font_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `data_labels` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.new` constructs a new object with attributes and blocks configured for the `data_label_types` +Terraform sub block. + + + +**Args**: + - `data_path_label_type` (`list[obj]`): Set the `data_path_label_type` field on the resulting object. When `null`, the `data_path_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsdata_path_label_typenew) constructor. + - `field_label_type` (`list[obj]`): Set the `field_label_type` field on the resulting object. When `null`, the `field_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfield_label_typenew) constructor. + - `maximum_label_type` (`list[obj]`): Set the `maximum_label_type` field on the resulting object. When `null`, the `maximum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsmaximum_label_typenew) constructor. + - `minimum_label_type` (`list[obj]`): Set the `minimum_label_type` field on the resulting object. When `null`, the `minimum_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsminimum_label_typenew) constructor. + - `range_ends_label_type` (`list[obj]`): Set the `range_ends_label_type` field on the resulting object. When `null`, the `range_ends_label_type` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsrange_ends_label_typenew) constructor. + +**Returns**: + - An attribute object that represents the `data_label_types` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.data_path_label_type.new` constructs a new object with attributes and blocks configured for the `data_path_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. When `null`, the `field_value` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `data_path_label_type` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.field_label_type.new` constructs a new object with attributes and blocks configured for the `field_label_type` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. When `null`, the `field_id` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `field_label_type` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.maximum_label_type.new` constructs a new object with attributes and blocks configured for the `maximum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `maximum_label_type` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.minimum_label_type.new` constructs a new object with attributes and blocks configured for the `minimum_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `minimum_label_type` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.data_label_types.range_ends_label_type.new` constructs a new object with attributes and blocks configured for the `range_ends_label_type` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `range_ends_label_type` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.new` constructs a new object with attributes and blocks configured for the `label_font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_labelsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `label_font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.data_labels.label_font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `waterfall_chart_aggregated_field_wells` (`list[obj]`): Set the `waterfall_chart_aggregated_field_wells` field on the resulting object. When `null`, the `waterfall_chart_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationwaterfall_chart_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `waterfall_chart_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `breakdowns` (`list[obj]`): Set the `breakdowns` field on the resulting object. When `null`, the `breakdowns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellsbreakdownsnew) constructor. + - `categories` (`list[obj]`): Set the `categories` field on the resulting object. When `null`, the `categories` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellscategoriesnew) constructor. + - `values` (`list[obj]`): Set the `values` field on the resulting object. When `null`, the `values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellsvaluesnew) constructor. + +**Returns**: + - An attribute object that represents the `waterfall_chart_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.new` constructs a new object with attributes and blocks configured for the `breakdowns` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `breakdowns` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownscolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsbreakdownsnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.breakdowns.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.new` constructs a new object with attributes and blocks configured for the `categories` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `categories` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesdate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategoriesnumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.categories.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.new` constructs a new object with attributes and blocks configured for the `values` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `values` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesdate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluescolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationfield_wellswaterfall_chart_aggregated_field_wellsvaluesnumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.field_wells.waterfall_chart_aggregated_field_wells.values.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.legend.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.new` constructs a new object with attributes and blocks configured for the `legend` +Terraform sub block. + + + +**Args**: + - `height` (`string`): Set the `height` field on the resulting object. When `null`, the `height` field will be omitted from the resulting object. + - `position` (`string`): Set the `position` field on the resulting object. When `null`, the `position` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `width` (`string`): Set the `width` field on the resulting object. When `null`, the `width` field will be omitted from the resulting object. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtitlenew) constructor. + +**Returns**: + - An attribute object that represents the `legend` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationlegendtitlefont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.legend.title.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_display_options` +Terraform sub block. + + + +**Args**: + - `axis_line_visibility` (`string`): Set the `axis_line_visibility` field on the resulting object. When `null`, the `axis_line_visibility` field will be omitted from the resulting object. + - `axis_offset` (`string`): Set the `axis_offset` field on the resulting object. When `null`, the `axis_offset` field will be omitted from the resulting object. + - `grid_line_visibility` (`string`): Set the `grid_line_visibility` field on the resulting object. When `null`, the `grid_line_visibility` field will be omitted from the resulting object. + - `data_options` (`list[obj]`): Set the `data_options` field on the resulting object. When `null`, the `data_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationdata_optionsnew) constructor. + - `scrollbar_options` (`list[obj]`): Set the `scrollbar_options` field on the resulting object. When `null`, the `scrollbar_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationscrollbar_optionsnew) constructor. + - `tick_label_options` (`list[obj]`): Set the `tick_label_options` field on the resulting object. When `null`, the `tick_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationtick_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_display_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.new` constructs a new object with attributes and blocks configured for the `data_options` +Terraform sub block. + + + +**Args**: + - `date_axis_options` (`list[obj]`): Set the `date_axis_options` field on the resulting object. When `null`, the `date_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdate_axis_optionsnew) constructor. + - `numeric_axis_options` (`list[obj]`): Set the `numeric_axis_options` field on the resulting object. When `null`, the `numeric_axis_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsnumeric_axis_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `data_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.date_axis_options.new` constructs a new object with attributes and blocks configured for the `date_axis_options` +Terraform sub block. + + + +**Args**: + - `missing_date_visibility` (`string`): Set the `missing_date_visibility` field on the resulting object. When `null`, the `missing_date_visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `date_axis_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.new` constructs a new object with attributes and blocks configured for the `numeric_axis_options` +Terraform sub block. + + + +**Args**: + - `range` (`list[obj]`): Set the `range` field on the resulting object. When `null`, the `range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsrangenew) constructor. + - `scale` (`list[obj]`): Set the `scale` field on the resulting object. When `null`, the `scale` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsscalenew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_axis_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.new` constructs a new object with attributes and blocks configured for the `range` +Terraform sub block. + + + +**Args**: + - `data_driven` (`list[obj]`): Set the `data_driven` field on the resulting object. When `null`, the `data_driven` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsdata_drivennew) constructor. + - `min_max` (`list[obj]`): Set the `min_max` field on the resulting object. When `null`, the `min_max` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionsmin_maxnew) constructor. + +**Returns**: + - An attribute object that represents the `range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.data_driven.new` constructs a new object with attributes and blocks configured for the `data_driven` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `data_driven` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.range.min_max.new` constructs a new object with attributes and blocks configured for the `min_max` +Terraform sub block. + + + +**Args**: + - `maximum` (`number`): Set the `maximum` field on the resulting object. When `null`, the `maximum` field will be omitted from the resulting object. + - `minimum` (`number`): Set the `minimum` field on the resulting object. When `null`, the `minimum` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `min_max` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.new` constructs a new object with attributes and blocks configured for the `scale` +Terraform sub block. + + + +**Args**: + - `linear` (`list[obj]`): Set the `linear` field on the resulting object. When `null`, the `linear` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslinearnew) constructor. + - `logarithmic` (`list[obj]`): Set the `logarithmic` field on the resulting object. When `null`, the `logarithmic` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsdata_optionsnumeric_axis_optionslogarithmicnew) constructor. + +**Returns**: + - An attribute object that represents the `scale` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.linear.new` constructs a new object with attributes and blocks configured for the `linear` +Terraform sub block. + + + +**Args**: + - `step_count` (`number`): Set the `step_count` field on the resulting object. When `null`, the `step_count` field will be omitted from the resulting object. + - `step_size` (`number`): Set the `step_size` field on the resulting object. When `null`, the `step_size` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `linear` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.data_options.numeric_axis_options.scale.logarithmic.new` constructs a new object with attributes and blocks configured for the `logarithmic` +Terraform sub block. + + + +**Args**: + - `base` (`number`): Set the `base` field on the resulting object. When `null`, the `base` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `logarithmic` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.new` constructs a new object with attributes and blocks configured for the `scrollbar_options` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `visible_range` (`list[obj]`): Set the `visible_range` field on the resulting object. When `null`, the `visible_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsvisible_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `scrollbar_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.new` constructs a new object with attributes and blocks configured for the `visible_range` +Terraform sub block. + + + +**Args**: + - `percent_range` (`list[obj]`): Set the `percent_range` field on the resulting object. When `null`, the `percent_range` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionsscrollbar_optionspercent_rangenew) constructor. + +**Returns**: + - An attribute object that represents the `visible_range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.scrollbar_options.visible_range.percent_range.new` constructs a new object with attributes and blocks configured for the `percent_range` +Terraform sub block. + + + +**Args**: + - `from` (`number`): Set the `from` field on the resulting object. When `null`, the `from` field will be omitted from the resulting object. + - `to` (`number`): Set the `to` field on the resulting object. When `null`, the `to` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percent_range` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.new` constructs a new object with attributes and blocks configured for the `tick_label_options` +Terraform sub block. + + + +**Args**: + - `rotation_angle` (`number`): Set the `rotation_angle` field on the resulting object. When `null`, the `rotation_angle` field will be omitted from the resulting object. + - `label_options` (`list[obj]`): Set the `label_options` field on the resulting object. When `null`, the `label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionslabel_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `tick_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.new` constructs a new object with attributes and blocks configured for the `label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_display_optionstick_label_optionslabel_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_display_options.tick_label_options.label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.new` constructs a new object with attributes and blocks configured for the `primary_y_axis_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `primary_y_axis_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationprimary_y_axis_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.primary_y_axis_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `breakdown_items_limit` (`list[obj]`): Set the `breakdown_items_limit` field on the resulting object. When `null`, the `breakdown_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationbreakdown_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcategory_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.breakdown_items_limit.new` constructs a new object with attributes and blocks configured for the `breakdown_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `breakdown_items_limit` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.new` constructs a new object with attributes and blocks configured for the `visual_palette` +Terraform sub block. + + + +**Args**: + - `chart_color` (`string`): Set the `chart_color` field on the resulting object. When `null`, the `chart_color` field will be omitted from the resulting object. + - `color_map` (`list[obj]`): Set the `color_map` field on the resulting object. When `null`, the `color_map` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationcolor_mapnew) constructor. + +**Returns**: + - An attribute object that represents the `visual_palette` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.new` constructs a new object with attributes and blocks configured for the `color_map` +Terraform sub block. + + + +**Args**: + - `color` (`string`): Set the `color` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. When `null`, the `time_granularity` field will be omitted from the resulting object. + - `element` (`list[obj]`): Set the `element` field on the resulting object. When `null`, the `element` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualchart_configurationvisual_paletteelementnew) constructor. + +**Returns**: + - An attribute object that represents the `color_map` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.visual_palette.color_map.element.new` constructs a new object with attributes and blocks configured for the `element` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `field_value` (`string`): Set the `field_value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `element` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options + + + +### fn definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.chart_configuration.waterfall_chart_options.new` constructs a new object with attributes and blocks configured for the `waterfall_chart_options` +Terraform sub block. + + + +**Args**: + - `total_bar_label` (`string`): Set the `total_bar_label` field on the resulting object. When `null`, the `total_bar_label` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `waterfall_chart_options` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.subtitle + + + +### fn definition.sheets.visuals.waterfall_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.waterfall_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.title + + + +### fn definition.sheets.visuals.waterfall_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualswaterfall_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.waterfall_visual.title.format_text + + + +### fn definition.sheets.visuals.waterfall_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.waterfall_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual + + + +### fn definition.sheets.visuals.word_cloud_visual.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.new` constructs a new object with attributes and blocks configured for the `word_cloud_visual` +Terraform sub block. + + + +**Args**: + - `visual_id` (`string`): Set the `visual_id` field on the resulting object. + - `actions` (`list[obj]`): Set the `actions` field on the resulting object. When `null`, the `actions` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.new](#fn-definitiondefinitionsheetsvisualsactionsnew) constructor. + - `chart_configuration` (`list[obj]`): Set the `chart_configuration` field on the resulting object. When `null`, the `chart_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.new](#fn-definitiondefinitionsheetsvisualschart_configurationnew) constructor. + - `column_hierarchies` (`list[obj]`): Set the `column_hierarchies` field on the resulting object. When `null`, the `column_hierarchies` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.new](#fn-definitiondefinitionsheetsvisualscolumn_hierarchiesnew) constructor. + - `subtitle` (`list[obj]`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.new](#fn-definitiondefinitionsheetsvisualssubtitlenew) constructor. + - `title` (`list[obj]`): Set the `title` field on the resulting object. When `null`, the `title` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.new](#fn-definitiondefinitionsheetsvisualstitlenew) constructor. + +**Returns**: + - An attribute object that represents the `word_cloud_visual` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.new` constructs a new object with attributes and blocks configured for the `actions` +Terraform sub block. + + + +**Args**: + - `custom_action_id` (`string`): Set the `custom_action_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `status` (`string`): Set the `status` field on the resulting object. + - `trigger` (`string`): Set the `trigger` field on the resulting object. + - `action_operations` (`list[obj]`): Set the `action_operations` field on the resulting object. When `null`, the `action_operations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualaction_operationsnew) constructor. + +**Returns**: + - An attribute object that represents the `actions` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.new` constructs a new object with attributes and blocks configured for the `action_operations` +Terraform sub block. + + + +**Args**: + - `filter_operation` (`list[obj]`): Set the `filter_operation` field on the resulting object. When `null`, the `filter_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsfilter_operationnew) constructor. + - `navigation_operation` (`list[obj]`): Set the `navigation_operation` field on the resulting object. When `null`, the `navigation_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsnavigation_operationnew) constructor. + - `set_parameters_operation` (`list[obj]`): Set the `set_parameters_operation` field on the resulting object. When `null`, the `set_parameters_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsset_parameters_operationnew) constructor. + - `url_operation` (`list[obj]`): Set the `url_operation` field on the resulting object. When `null`, the `url_operation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsurl_operationnew) constructor. + +**Returns**: + - An attribute object that represents the `action_operations` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.new` constructs a new object with attributes and blocks configured for the `filter_operation` +Terraform sub block. + + + +**Args**: + - `selected_fields_configuration` (`list[obj]`): Set the `selected_fields_configuration` field on the resulting object. When `null`, the `selected_fields_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsselected_fields_configurationnew) constructor. + - `target_visuals_configuration` (`list[obj]`): Set the `target_visuals_configuration` field on the resulting object. When `null`, the `target_visuals_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationstarget_visuals_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `filter_operation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.selected_fields_configuration.new` constructs a new object with attributes and blocks configured for the `selected_fields_configuration` +Terraform sub block. + + + +**Args**: + - `selected_field_option` (`string`): Set the `selected_field_option` field on the resulting object. When `null`, the `selected_field_option` field will be omitted from the resulting object. + - `selected_fields` (`list`): Set the `selected_fields` field on the resulting object. When `null`, the `selected_fields` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `selected_fields_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.new` constructs a new object with attributes and blocks configured for the `target_visuals_configuration` +Terraform sub block. + + + +**Args**: + - `same_sheet_target_visual_configuration` (`list[obj]`): Set the `same_sheet_target_visual_configuration` field on the resulting object. When `null`, the `same_sheet_target_visual_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsfilter_operationsame_sheet_target_visual_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `target_visuals_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.filter_operation.target_visuals_configuration.same_sheet_target_visual_configuration.new` constructs a new object with attributes and blocks configured for the `same_sheet_target_visual_configuration` +Terraform sub block. + + + +**Args**: + - `target_visual_option` (`string`): Set the `target_visual_option` field on the resulting object. When `null`, the `target_visual_option` field will be omitted from the resulting object. + - `target_visuals` (`list`): Set the `target_visuals` field on the resulting object. When `null`, the `target_visuals` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `same_sheet_target_visual_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.new` constructs a new object with attributes and blocks configured for the `navigation_operation` +Terraform sub block. + + + +**Args**: + - `local_navigation_configuration` (`list[obj]`): Set the `local_navigation_configuration` field on the resulting object. When `null`, the `local_navigation_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationslocal_navigation_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `navigation_operation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.navigation_operation.local_navigation_configuration.new` constructs a new object with attributes and blocks configured for the `local_navigation_configuration` +Terraform sub block. + + + +**Args**: + - `target_sheet_id` (`string`): Set the `target_sheet_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `local_navigation_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.new` constructs a new object with attributes and blocks configured for the `set_parameters_operation` +Terraform sub block. + + + +**Args**: + - `parameter_value_configurations` (`list[obj]`): Set the `parameter_value_configurations` field on the resulting object. When `null`, the `parameter_value_configurations` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsparameter_value_configurationsnew) constructor. + +**Returns**: + - An attribute object that represents the `set_parameters_operation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.new` constructs a new object with attributes and blocks configured for the `parameter_value_configurations` +Terraform sub block. + + + +**Args**: + - `destination_parameter_name` (`string`): Set the `destination_parameter_name` field on the resulting object. + - `value` (`list[obj]`): Set the `value` field on the resulting object. When `null`, the `value` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `parameter_value_configurations` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `select_all_value_options` (`string`): Set the `select_all_value_options` field on the resulting object. When `null`, the `select_all_value_options` field will be omitted from the resulting object. + - `source_field` (`string`): Set the `source_field` field on the resulting object. When `null`, the `source_field` field will be omitted from the resulting object. + - `source_parameter_name` (`string`): Set the `source_parameter_name` field on the resulting object. When `null`, the `source_parameter_name` field will be omitted from the resulting object. + - `custom_values_configuration` (`list[obj]`): Set the `custom_values_configuration` field on the resulting object. When `null`, the `custom_values_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationscustom_values_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.new` constructs a new object with attributes and blocks configured for the `custom_values_configuration` +Terraform sub block. + + + +**Args**: + - `include_null_value` (`bool`): Set the `include_null_value` field on the resulting object. When `null`, the `include_null_value` field will be omitted from the resulting object. + - `custom_values` (`list[obj]`): Set the `custom_values` field on the resulting object. When `null`, the `custom_values` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualactionsaction_operationsset_parameters_operationparameter_value_configurationsvaluecustom_valuesnew) constructor. + +**Returns**: + - An attribute object that represents the `custom_values_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.set_parameters_operation.parameter_value_configurations.value.custom_values_configuration.custom_values.new` constructs a new object with attributes and blocks configured for the `custom_values` +Terraform sub block. + + + +**Args**: + - `date_time_values` (`list`): Set the `date_time_values` field on the resulting object. When `null`, the `date_time_values` field will be omitted from the resulting object. + - `decimal_values` (`list`): Set the `decimal_values` field on the resulting object. When `null`, the `decimal_values` field will be omitted from the resulting object. + - `integer_values` (`list`): Set the `integer_values` field on the resulting object. When `null`, the `integer_values` field will be omitted from the resulting object. + - `string_values` (`list`): Set the `string_values` field on the resulting object. When `null`, the `string_values` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `custom_values` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation + + + +### fn definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.actions.action_operations.url_operation.new` constructs a new object with attributes and blocks configured for the `url_operation` +Terraform sub block. + + + +**Args**: + - `url_target` (`string`): Set the `url_target` field on the resulting object. + - `url_template` (`string`): Set the `url_template` field on the resulting object. + +**Returns**: + - An attribute object that represents the `url_operation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.new` constructs a new object with attributes and blocks configured for the `chart_configuration` +Terraform sub block. + + + +**Args**: + - `category_label_options` (`list[obj]`): Set the `category_label_options` field on the resulting object. When `null`, the `category_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcategory_label_optionsnew) constructor. + - `field_wells` (`list[obj]`): Set the `field_wells` field on the resulting object. When `null`, the `field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualfield_wellsnew) constructor. + - `sort_configuration` (`list[obj]`): Set the `sort_configuration` field on the resulting object. When `null`, the `sort_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualsort_configurationnew) constructor. + - `word_cloud_options` (`list[obj]`): Set the `word_cloud_options` field on the resulting object. When `null`, the `word_cloud_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualword_cloud_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `chart_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.new` constructs a new object with attributes and blocks configured for the `category_label_options` +Terraform sub block. + + + +**Args**: + - `sort_icon_visibility` (`string`): Set the `sort_icon_visibility` field on the resulting object. When `null`, the `sort_icon_visibility` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `axis_label_options` (`list[obj]`): Set the `axis_label_options` field on the resulting object. When `null`, the `axis_label_options` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationaxis_label_optionsnew) constructor. + +**Returns**: + - An attribute object that represents the `category_label_options` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.new` constructs a new object with attributes and blocks configured for the `axis_label_options` +Terraform sub block. + + + +**Args**: + - `custom_label` (`string`): Set the `custom_label` field on the resulting object. When `null`, the `custom_label` field will be omitted from the resulting object. + - `apply_to` (`list[obj]`): Set the `apply_to` field on the resulting object. When `null`, the `apply_to` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsapply_tonew) constructor. + - `font_configuration` (`list[obj]`): Set the `font_configuration` field on the resulting object. When `null`, the `font_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsfont_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `axis_label_options` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.new` constructs a new object with attributes and blocks configured for the `apply_to` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `apply_to` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.apply_to.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.new` constructs a new object with attributes and blocks configured for the `font_configuration` +Terraform sub block. + + + +**Args**: + - `font_color` (`string`): Set the `font_color` field on the resulting object. When `null`, the `font_color` field will be omitted from the resulting object. + - `font_decoration` (`string`): Set the `font_decoration` field on the resulting object. When `null`, the `font_decoration` field will be omitted from the resulting object. + - `font_style` (`string`): Set the `font_style` field on the resulting object. When `null`, the `font_style` field will be omitted from the resulting object. + - `font_size` (`list[obj]`): Set the `font_size` field on the resulting object. When `null`, the `font_size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_sizenew) constructor. + - `font_weight` (`list[obj]`): Set the `font_weight` field on the resulting object. When `null`, the `font_weight` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_label_optionsaxis_label_optionsfont_weightnew) constructor. + +**Returns**: + - An attribute object that represents the `font_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_size.new` constructs a new object with attributes and blocks configured for the `font_size` +Terraform sub block. + + + +**Args**: + - `relative` (`string`): Set the `relative` field on the resulting object. When `null`, the `relative` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_size` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.category_label_options.axis_label_options.font_configuration.font_weight.new` constructs a new object with attributes and blocks configured for the `font_weight` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `font_weight` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.new` constructs a new object with attributes and blocks configured for the `field_wells` +Terraform sub block. + + + +**Args**: + - `word_cloud_aggregated_field_wells` (`list[obj]`): Set the `word_cloud_aggregated_field_wells` field on the resulting object. When `null`, the `word_cloud_aggregated_field_wells` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationword_cloud_aggregated_field_wellsnew) constructor. + +**Returns**: + - An attribute object that represents the `field_wells` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.new` constructs a new object with attributes and blocks configured for the `word_cloud_aggregated_field_wells` +Terraform sub block. + + + +**Args**: + - `group_by` (`list[obj]`): Set the `group_by` field on the resulting object. When `null`, the `group_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsgroup_bynew) constructor. + - `size` (`list[obj]`): Set the `size` field on the resulting object. When `null`, the `size` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellssizenew) constructor. + +**Returns**: + - An attribute object that represents the `word_cloud_aggregated_field_wells` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.new` constructs a new object with attributes and blocks configured for the `group_by` +Terraform sub block. + + + +**Args**: + - `categorical_dimension_field` (`list[obj]`): Set the `categorical_dimension_field` field on the resulting object. When `null`, the `categorical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscategorical_dimension_fieldnew) constructor. + - `date_dimension_field` (`list[obj]`): Set the `date_dimension_field` field on the resulting object. When `null`, the `date_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsdate_dimension_fieldnew) constructor. + - `numerical_dimension_field` (`list[obj]`): Set the `numerical_dimension_field` field on the resulting object. When `null`, the `numerical_dimension_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsnumerical_dimension_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `group_by` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.new` constructs a new object with attributes and blocks configured for the `categorical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_dimension_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycategorical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.categorical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.new` constructs a new object with attributes and blocks configured for the `date_dimension_field` +Terraform sub block. + + + +**Args**: + - `date_granularity` (`string`): Set the `date_granularity` field on the resulting object. When `null`, the `date_granularity` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_dimension_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bydate_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.date_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.new` constructs a new object with attributes and blocks configured for the `numerical_dimension_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. When `null`, the `hierarchy_id` field will be omitted from the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bycolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_byformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_dimension_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsgroup_bynumerical_dimension_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.group_by.numerical_dimension_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.new` constructs a new object with attributes and blocks configured for the `size` +Terraform sub block. + + + +**Args**: + - `calculated_measure_field` (`list[obj]`): Set the `calculated_measure_field` field on the resulting object. When `null`, the `calculated_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscalculated_measure_fieldnew) constructor. + - `categorical_measure_field` (`list[obj]`): Set the `categorical_measure_field` field on the resulting object. When `null`, the `categorical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellscategorical_measure_fieldnew) constructor. + - `date_measure_field` (`list[obj]`): Set the `date_measure_field` field on the resulting object. When `null`, the `date_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsdate_measure_fieldnew) constructor. + - `numerical_measure_field` (`list[obj]`): Set the `numerical_measure_field` field on the resulting object. When `null`, the `numerical_measure_field` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellsnumerical_measure_fieldnew) constructor. + +**Returns**: + - An attribute object that represents the `size` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.calculated_measure_field.new` constructs a new object with attributes and blocks configured for the `calculated_measure_field` +Terraform sub block. + + + +**Args**: + - `expression` (`string`): Set the `expression` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `calculated_measure_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.new` constructs a new object with attributes and blocks configured for the `categorical_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `categorical_measure_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecategorical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.categorical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.new` constructs a new object with attributes and blocks configured for the `date_measure_field` +Terraform sub block. + + + +**Args**: + - `aggregation_function` (`string`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` field will be omitted from the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `date_measure_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `date_time_format` (`string`): Set the `date_time_format` field on the resulting object. When `null`, the `date_time_format` field will be omitted from the resulting object. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldnull_value_format_configurationnew) constructor. + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizedate_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.date_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.new` constructs a new object with attributes and blocks configured for the `numerical_measure_field` +Terraform sub block. + + + +**Args**: + - `field_id` (`string`): Set the `field_id` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeaggregation_functionnew) constructor. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizecolumnnew) constructor. + - `format_configuration` (`list[obj]`): Set the `format_configuration` field on the resulting object. When `null`, the `format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizeformat_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_measure_field` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.new` constructs a new object with attributes and blocks configured for the `format_configuration` +Terraform sub block. + + + +**Args**: + - `numeric_format_configuration` (`list[obj]`): Set the `numeric_format_configuration` field on the resulting object. When `null`, the `numeric_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldnumeric_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.new` constructs a new object with attributes and blocks configured for the `numeric_format_configuration` +Terraform sub block. + + + +**Args**: + - `currency_display_format_configuration` (`list[obj]`): Set the `currency_display_format_configuration` field on the resulting object. When `null`, the `currency_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationcurrency_display_format_configurationnew) constructor. + - `number_display_format_configuration` (`list[obj]`): Set the `number_display_format_configuration` field on the resulting object. When `null`, the `number_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumber_display_format_configurationnew) constructor. + - `percentage_display_format_configuration` (`list[obj]`): Set the `percentage_display_format_configuration` field on the resulting object. When `null`, the `percentage_display_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationpercentage_display_format_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `currency_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `currency_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationcurrency_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.currency_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `number_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `number_scale` (`string`): Set the `number_scale` field on the resulting object. When `null`, the `number_scale` field will be omitted from the resulting object. + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `number_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnumber_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.number_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.new` constructs a new object with attributes and blocks configured for the `percentage_display_format_configuration` +Terraform sub block. + + + +**Args**: + - `prefix` (`string`): Set the `prefix` field on the resulting object. When `null`, the `prefix` field will be omitted from the resulting object. + - `suffix` (`string`): Set the `suffix` field on the resulting object. When `null`, the `suffix` field will be omitted from the resulting object. + - `decimal_places_configuration` (`list[obj]`): Set the `decimal_places_configuration` field on the resulting object. When `null`, the `decimal_places_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationdecimal_places_configurationnew) constructor. + - `negative_value_configuration` (`list[obj]`): Set the `negative_value_configuration` field on the resulting object. When `null`, the `negative_value_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnegative_value_configurationnew) constructor. + - `null_value_format_configuration` (`list[obj]`): Set the `null_value_format_configuration` field on the resulting object. When `null`, the `null_value_format_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationnull_value_format_configurationnew) constructor. + - `separator_configuration` (`list[obj]`): Set the `separator_configuration` field on the resulting object. When `null`, the `separator_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationseparator_configurationnew) constructor. + +**Returns**: + - An attribute object that represents the `percentage_display_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.decimal_places_configuration.new` constructs a new object with attributes and blocks configured for the `decimal_places_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_places` (`number`): Set the `decimal_places` field on the resulting object. + +**Returns**: + - An attribute object that represents the `decimal_places_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.negative_value_configuration.new` constructs a new object with attributes and blocks configured for the `negative_value_configuration` +Terraform sub block. + + + +**Args**: + - `display_mode` (`string`): Set the `display_mode` field on the resulting object. + +**Returns**: + - An attribute object that represents the `negative_value_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.null_value_format_configuration.new` constructs a new object with attributes and blocks configured for the `null_value_format_configuration` +Terraform sub block. + + + +**Args**: + - `null_string` (`string`): Set the `null_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `null_value_format_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.new` constructs a new object with attributes and blocks configured for the `separator_configuration` +Terraform sub block. + + + +**Args**: + - `decimal_separator` (`string`): Set the `decimal_separator` field on the resulting object. When `null`, the `decimal_separator` field will be omitted from the resulting object. + - `thousands_separator` (`list[obj]`): Set the `thousands_separator` field on the resulting object. When `null`, the `thousands_separator` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationfield_wellsword_cloud_aggregated_field_wellssizenumerical_measure_fieldformat_configurationnumeric_format_configurationpercentage_display_format_configurationthousands_separatornew) constructor. + +**Returns**: + - An attribute object that represents the `separator_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.field_wells.word_cloud_aggregated_field_wells.size.numerical_measure_field.format_configuration.numeric_format_configuration.percentage_display_format_configuration.separator_configuration.thousands_separator.new` constructs a new object with attributes and blocks configured for the `thousands_separator` +Terraform sub block. + + + +**Args**: + - `symbol` (`string`): Set the `symbol` field on the resulting object. When `null`, the `symbol` field will be omitted from the resulting object. + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `thousands_separator` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.new` constructs a new object with attributes and blocks configured for the `sort_configuration` +Terraform sub block. + + + +**Args**: + - `category_items_limit` (`list[obj]`): Set the `category_items_limit` field on the resulting object. When `null`, the `category_items_limit` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_items_limitnew) constructor. + - `category_sort` (`list[obj]`): Set the `category_sort` field on the resulting object. When `null`, the `category_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationcategory_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `sort_configuration` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_items_limit.new` constructs a new object with attributes and blocks configured for the `category_items_limit` +Terraform sub block. + + + +**Args**: + - `items_limit` (`number`): Set the `items_limit` field on the resulting object. When `null`, the `items_limit` field will be omitted from the resulting object. + - `other_categories` (`string`): Set the `other_categories` field on the resulting object. + +**Returns**: + - An attribute object that represents the `category_items_limit` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.new` constructs a new object with attributes and blocks configured for the `category_sort` +Terraform sub block. + + + +**Args**: + - `column_sort` (`list[obj]`): Set the `column_sort` field on the resulting object. When `null`, the `column_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcolumn_sortnew) constructor. + - `field_sort` (`list[obj]`): Set the `field_sort` field on the resulting object. When `null`, the `field_sort` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationfield_sortnew) constructor. + +**Returns**: + - An attribute object that represents the `category_sort` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.new` constructs a new object with attributes and blocks configured for the `column_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `aggregation_function` (`list[obj]`): Set the `aggregation_function` field on the resulting object. When `null`, the `aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortaggregation_functionnew) constructor. + - `sort_by` (`list[obj]`): Set the `sort_by` field on the resulting object. When `null`, the `sort_by` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortsort_bynew) constructor. + +**Returns**: + - An attribute object that represents the `column_sort` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.new` constructs a new object with attributes and blocks configured for the `aggregation_function` +Terraform sub block. + + + +**Args**: + - `categorical_aggregation_function` (`string`): Set the `categorical_aggregation_function` field on the resulting object. When `null`, the `categorical_aggregation_function` field will be omitted from the resulting object. + - `date_aggregation_function` (`string`): Set the `date_aggregation_function` field on the resulting object. When `null`, the `date_aggregation_function` field will be omitted from the resulting object. + - `numerical_aggregation_function` (`list[obj]`): Set the `numerical_aggregation_function` field on the resulting object. When `null`, the `numerical_aggregation_function` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortnumerical_aggregation_functionnew) constructor. + +**Returns**: + - An attribute object that represents the `aggregation_function` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.new` constructs a new object with attributes and blocks configured for the `numerical_aggregation_function` +Terraform sub block. + + + +**Args**: + - `simple_numerical_aggregation` (`string`): Set the `simple_numerical_aggregation` field on the resulting object. When `null`, the `simple_numerical_aggregation` field will be omitted from the resulting object. + - `percentile_aggregation` (`list[obj]`): Set the `percentile_aggregation` field on the resulting object. When `null`, the `percentile_aggregation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualchart_configurationsort_configurationcategory_sortcolumn_sortaggregation_functionpercentile_aggregationnew) constructor. + +**Returns**: + - An attribute object that represents the `numerical_aggregation_function` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.aggregation_function.numerical_aggregation_function.percentile_aggregation.new` constructs a new object with attributes and blocks configured for the `percentile_aggregation` +Terraform sub block. + + + +**Args**: + - `percentile_value` (`number`): Set the `percentile_value` field on the resulting object. When `null`, the `percentile_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `percentile_aggregation` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.column_sort.sort_by.new` constructs a new object with attributes and blocks configured for the `sort_by` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sort_by` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.sort_configuration.category_sort.field_sort.new` constructs a new object with attributes and blocks configured for the `field_sort` +Terraform sub block. + + + +**Args**: + - `direction` (`string`): Set the `direction` field on the resulting object. + - `field_id` (`string`): Set the `field_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `field_sort` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options + + + +### fn definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.chart_configuration.word_cloud_options.new` constructs a new object with attributes and blocks configured for the `word_cloud_options` +Terraform sub block. + + + +**Args**: + - `cloud_layout` (`string`): Set the `cloud_layout` field on the resulting object. When `null`, the `cloud_layout` field will be omitted from the resulting object. + - `maximum_string_length` (`number`): Set the `maximum_string_length` field on the resulting object. When `null`, the `maximum_string_length` field will be omitted from the resulting object. + - `word_casing` (`string`): Set the `word_casing` field on the resulting object. When `null`, the `word_casing` field will be omitted from the resulting object. + - `word_orientation` (`string`): Set the `word_orientation` field on the resulting object. When `null`, the `word_orientation` field will be omitted from the resulting object. + - `word_padding` (`string`): Set the `word_padding` field on the resulting object. When `null`, the `word_padding` field will be omitted from the resulting object. + - `word_scaling` (`string`): Set the `word_scaling` field on the resulting object. When `null`, the `word_scaling` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `word_cloud_options` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.new` constructs a new object with attributes and blocks configured for the `column_hierarchies` +Terraform sub block. + + + +**Args**: + - `date_time_hierarchy` (`list[obj]`): Set the `date_time_hierarchy` field on the resulting object. When `null`, the `date_time_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualdate_time_hierarchynew) constructor. + - `explicit_hierarchy` (`list[obj]`): Set the `explicit_hierarchy` field on the resulting object. When `null`, the `explicit_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualexplicit_hierarchynew) constructor. + - `predefined_hierarchy` (`list[obj]`): Set the `predefined_hierarchy` field on the resulting object. When `null`, the `predefined_hierarchy` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualpredefined_hierarchynew) constructor. + +**Returns**: + - An attribute object that represents the `column_hierarchies` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.new` constructs a new object with attributes and blocks configured for the `date_time_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `date_time_hierarchy` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdate_time_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.date_time_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.new` constructs a new object with attributes and blocks configured for the `explicit_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `explicit_hierarchy` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesexplicit_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.explicit_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.new` constructs a new object with attributes and blocks configured for the `predefined_hierarchy` +Terraform sub block. + + + +**Args**: + - `hierarchy_id` (`string`): Set the `hierarchy_id` field on the resulting object. + - `columns` (`list[obj]`): Set the `columns` field on the resulting object. When `null`, the `columns` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiescolumnsnew) constructor. + - `drill_down_filters` (`list[obj]`): Set the `drill_down_filters` field on the resulting object. When `null`, the `drill_down_filters` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiesdrill_down_filtersnew) constructor. + +**Returns**: + - An attribute object that represents the `predefined_hierarchy` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.columns.new` constructs a new object with attributes and blocks configured for the `columns` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `columns` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.new` constructs a new object with attributes and blocks configured for the `drill_down_filters` +Terraform sub block. + + + +**Args**: + - `category_filter` (`list[obj]`): Set the `category_filter` field on the resulting object. When `null`, the `category_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchycategory_filternew) constructor. + - `numeric_equality_filter` (`list[obj]`): Set the `numeric_equality_filter` field on the resulting object. When `null`, the `numeric_equality_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchynumeric_equality_filternew) constructor. + - `time_range_filter` (`list[obj]`): Set the `time_range_filter` field on the resulting object. When `null`, the `time_range_filter` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchytime_range_filternew) constructor. + +**Returns**: + - An attribute object that represents the `drill_down_filters` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.new` constructs a new object with attributes and blocks configured for the `category_filter` +Terraform sub block. + + + +**Args**: + - `category_values` (`list`): Set the `category_values` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `category_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.category_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.new` constructs a new object with attributes and blocks configured for the `numeric_equality_filter` +Terraform sub block. + + + +**Args**: + - `value` (`number`): Set the `value` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `numeric_equality_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.numeric_equality_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.new` constructs a new object with attributes and blocks configured for the `time_range_filter` +Terraform sub block. + + + +**Args**: + - `range_maximum` (`string`): Set the `range_maximum` field on the resulting object. + - `range_minimum` (`string`): Set the `range_minimum` field on the resulting object. + - `time_granularity` (`string`): Set the `time_granularity` field on the resulting object. + - `column` (`list[obj]`): Set the `column` field on the resulting object. When `null`, the `column` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualcolumn_hierarchiespredefined_hierarchydrill_down_filterscolumnnew) constructor. + +**Returns**: + - An attribute object that represents the `time_range_filter` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column + + + +### fn definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.column_hierarchies.predefined_hierarchy.drill_down_filters.time_range_filter.column.new` constructs a new object with attributes and blocks configured for the `column` +Terraform sub block. + + + +**Args**: + - `column_name` (`string`): Set the `column_name` field on the resulting object. + - `data_set_identifier` (`string`): Set the `data_set_identifier` field on the resulting object. + +**Returns**: + - An attribute object that represents the `column` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.subtitle + + + +### fn definition.sheets.visuals.word_cloud_visual.subtitle.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.new` constructs a new object with attributes and blocks configured for the `subtitle` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.format_text.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `subtitle` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.subtitle.format_text + + + +### fn definition.sheets.visuals.word_cloud_visual.subtitle.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.subtitle.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.title + + + +### fn definition.sheets.visuals.word_cloud_visual.title.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.new` constructs a new object with attributes and blocks configured for the `title` +Terraform sub block. + + + +**Args**: + - `visibility` (`string`): Set the `visibility` field on the resulting object. When `null`, the `visibility` field will be omitted from the resulting object. + - `format_text` (`list[obj]`): Set the `format_text` field on the resulting object. When `null`, the `format_text` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.format_text.new](#fn-definitiondefinitionsheetsvisualsword_cloud_visualformat_textnew) constructor. + +**Returns**: + - An attribute object that represents the `title` sub block. + + +## obj definition.sheets.visuals.word_cloud_visual.title.format_text + + + +### fn definition.sheets.visuals.word_cloud_visual.title.format_text.new + +```ts +new() +``` + + +`aws.quicksight_template.definition.sheets.visuals.word_cloud_visual.title.format_text.new` constructs a new object with attributes and blocks configured for the `format_text` +Terraform sub block. + + + +**Args**: + - `plain_text` (`string`): Set the `plain_text` field on the resulting object. When `null`, the `plain_text` field will be omitted from the resulting object. + - `rich_text` (`string`): Set the `rich_text` field on the resulting object. When `null`, the `rich_text` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `format_text` sub block. + + +## obj permissions + + + +### fn permissions.new + +```ts +new() +``` + + +`aws.quicksight_template.permissions.new` constructs a new object with attributes and blocks configured for the `permissions` +Terraform sub block. + + + +**Args**: + - `actions` (`list`): Set the `actions` field on the resulting object. + - `principal` (`string`): Set the `principal` field on the resulting object. + +**Returns**: + - An attribute object that represents the `permissions` sub block. + + +## obj source_entity + + + +### fn source_entity.new + +```ts +new() +``` + + +`aws.quicksight_template.source_entity.new` constructs a new object with attributes and blocks configured for the `source_entity` +Terraform sub block. + + + +**Args**: + - `source_analysis` (`list[obj]`): Set the `source_analysis` field on the resulting object. When `null`, the `source_analysis` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_analysis.new](#fn-source_entitysource_analysisnew) constructor. + - `source_template` (`list[obj]`): Set the `source_template` field on the resulting object. When `null`, the `source_template` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_template.new](#fn-source_entitysource_templatenew) constructor. + +**Returns**: + - An attribute object that represents the `source_entity` sub block. + + +## obj source_entity.source_analysis + + + +### fn source_entity.source_analysis.new + +```ts +new() +``` + + +`aws.quicksight_template.source_entity.source_analysis.new` constructs a new object with attributes and blocks configured for the `source_analysis` +Terraform sub block. + + + +**Args**: + - `arn` (`string`): Set the `arn` field on the resulting object. + - `data_set_references` (`list[obj]`): Set the `data_set_references` field on the resulting object. When `null`, the `data_set_references` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_template.source_entity.source_analysis.data_set_references.new](#fn-source_entitysource_entitydata_set_referencesnew) constructor. + +**Returns**: + - An attribute object that represents the `source_analysis` sub block. + + +## obj source_entity.source_analysis.data_set_references + + + +### fn source_entity.source_analysis.data_set_references.new + +```ts +new() +``` + + +`aws.quicksight_template.source_entity.source_analysis.data_set_references.new` constructs a new object with attributes and blocks configured for the `data_set_references` +Terraform sub block. + + + +**Args**: + - `data_set_arn` (`string`): Set the `data_set_arn` field on the resulting object. + - `data_set_placeholder` (`string`): Set the `data_set_placeholder` field on the resulting object. + +**Returns**: + - An attribute object that represents the `data_set_references` sub block. + + +## obj source_entity.source_template + + + +### fn source_entity.source_template.new + +```ts +new() +``` + + +`aws.quicksight_template.source_entity.source_template.new` constructs a new object with attributes and blocks configured for the `source_template` +Terraform sub block. + + + +**Args**: + - `arn` (`string`): Set the `arn` field on the resulting object. + +**Returns**: + - An attribute object that represents the `source_template` sub block. + + +## obj timeouts + + + +### fn timeouts.new + +```ts +new() +``` + + +`aws.quicksight_template.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts` +Terraform sub block. + + + +**Args**: + - `create` (`string`): Set the `create` field on the resulting object. When `null`, the `create` field will be omitted from the resulting object. + - `delete` (`string`): Set the `delete` field on the resulting object. When `null`, the `delete` field will be omitted from the resulting object. + - `update` (`string`): Set the `update` field on the resulting object. When `null`, the `update` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `timeouts` sub block. diff --git a/docs/4.x/quicksight_template_alias.md b/docs/4.x/quicksight_template_alias.md new file mode 100644 index 00000000..fd544b37 --- /dev/null +++ b/docs/4.x/quicksight_template_alias.md @@ -0,0 +1,149 @@ +--- +permalink: /quicksight_template_alias/ +--- + +# quicksight_template_alias + +`quicksight_template_alias` represents the `aws_quicksight_template_alias` 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 withAliasName()`](#fn-withaliasname) +* [`fn withAwsAccountId()`](#fn-withawsaccountid) +* [`fn withTemplateId()`](#fn-withtemplateid) +* [`fn withTemplateVersionNumber()`](#fn-withtemplateversionnumber) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.quicksight_template_alias.new` injects a new `aws_quicksight_template_alias` 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.quicksight_template_alias.new('some_id') + +You can get the reference to the `id` field of the created `aws.quicksight_template_alias` using the reference: + + $._ref.aws_quicksight_template_alias.some_id.get('id') + +This is the same as directly entering `"${ aws_quicksight_template_alias.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. + - `alias_name` (`string`): Set the `alias_name` field on the resulting resource block. + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `template_id` (`string`): Set the `template_id` field on the resulting resource block. + - `template_version_number` (`number`): Set the `template_version_number` 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.quicksight_template_alias.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_template_alias` +Terraform resource. + +Unlike [aws.quicksight_template_alias.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**: + - `alias_name` (`string`): Set the `alias_name` field on the resulting object. + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `template_id` (`string`): Set the `template_id` field on the resulting object. + - `template_version_number` (`number`): Set the `template_version_number` 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 `quicksight_template_alias` resource into the root Terraform configuration. + + +### fn withAliasName + +```ts +withAliasName() +``` + +`aws.string.withAliasName` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the alias_name field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `alias_name` field. + + +### fn withAwsAccountId + +```ts +withAwsAccountId() +``` + +`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the aws_account_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `aws_account_id` field. + + +### fn withTemplateId + +```ts +withTemplateId() +``` + +`aws.string.withTemplateId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the template_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `template_id` field. + + +### fn withTemplateVersionNumber + +```ts +withTemplateVersionNumber() +``` + +`aws.number.withTemplateVersionNumber` constructs a mixin object that can be merged into the `number` +Terraform resource block to set or update the template_version_number field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`number`): The value to set for the `template_version_number` field. diff --git a/docs/4.x/quicksight_vpc_connection.md b/docs/4.x/quicksight_vpc_connection.md new file mode 100644 index 00000000..da732a36 --- /dev/null +++ b/docs/4.x/quicksight_vpc_connection.md @@ -0,0 +1,292 @@ +--- +permalink: /quicksight_vpc_connection/ +--- + +# quicksight_vpc_connection + +`quicksight_vpc_connection` represents the `aws_quicksight_vpc_connection` 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 withAwsAccountId()`](#fn-withawsaccountid) +* [`fn withDnsResolvers()`](#fn-withdnsresolvers) +* [`fn withName()`](#fn-withname) +* [`fn withRoleArn()`](#fn-withrolearn) +* [`fn withSecurityGroupIds()`](#fn-withsecuritygroupids) +* [`fn withSubnetIds()`](#fn-withsubnetids) +* [`fn withTags()`](#fn-withtags) +* [`fn withTimeouts()`](#fn-withtimeouts) +* [`fn withTimeoutsMixin()`](#fn-withtimeoutsmixin) +* [`fn withVpcConnectionId()`](#fn-withvpcconnectionid) +* [`obj timeouts`](#obj-timeouts) + * [`fn new()`](#fn-timeoutsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.quicksight_vpc_connection.new` injects a new `aws_quicksight_vpc_connection` 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.quicksight_vpc_connection.new('some_id') + +You can get the reference to the `id` field of the created `aws.quicksight_vpc_connection` using the reference: + + $._ref.aws_quicksight_vpc_connection.some_id.get('id') + +This is the same as directly entering `"${ aws_quicksight_vpc_connection.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. + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting resource block. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `dns_resolvers` (`list`): Set the `dns_resolvers` field on the resulting resource block. When `null`, the `dns_resolvers` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting resource block. + - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block. + - `security_group_ids` (`list`): Set the `security_group_ids` field on the resulting resource block. + - `subnet_ids` (`list`): Set the `subnet_ids` field on the resulting resource block. + - `tags` (`obj`): Set the `tags` field on the resulting resource block. When `null`, the `tags` field will be omitted from the resulting object. + - `vpc_connection_id` (`string`): Set the `vpc_connection_id` field on the resulting resource block. + - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_vpc_connection.timeouts.new](#fn-timeoutsnew) constructor. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.quicksight_vpc_connection.newAttrs` constructs a new object with attributes and blocks configured for the `quicksight_vpc_connection` +Terraform resource. + +Unlike [aws.quicksight_vpc_connection.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**: + - `aws_account_id` (`string`): Set the `aws_account_id` field on the resulting object. When `null`, the `aws_account_id` field will be omitted from the resulting object. + - `dns_resolvers` (`list`): Set the `dns_resolvers` field on the resulting object. When `null`, the `dns_resolvers` field will be omitted from the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `role_arn` (`string`): Set the `role_arn` field on the resulting object. + - `security_group_ids` (`list`): Set the `security_group_ids` field on the resulting object. + - `subnet_ids` (`list`): Set the `subnet_ids` field on the resulting object. + - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object. + - `vpc_connection_id` (`string`): Set the `vpc_connection_id` field on the resulting object. + - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.quicksight_vpc_connection.timeouts.new](#fn-timeoutsnew) constructor. + +**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 `quicksight_vpc_connection` resource into the root Terraform configuration. + + +### fn withAwsAccountId + +```ts +withAwsAccountId() +``` + +`aws.string.withAwsAccountId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the aws_account_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `aws_account_id` field. + + +### fn withDnsResolvers + +```ts +withDnsResolvers() +``` + +`aws.list.withDnsResolvers` constructs a mixin object that can be merged into the `list` +Terraform resource block to set or update the dns_resolvers field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list`): The value to set for the `dns_resolvers` field. + + +### fn withName + +```ts +withName() +``` + +`aws.string.withName` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the name field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `name` 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 withSecurityGroupIds + +```ts +withSecurityGroupIds() +``` + +`aws.list.withSecurityGroupIds` constructs a mixin object that can be merged into the `list` +Terraform resource block to set or update the security_group_ids field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list`): The value to set for the `security_group_ids` field. + + +### fn withSubnetIds + +```ts +withSubnetIds() +``` + +`aws.list.withSubnetIds` constructs a mixin object that can be merged into the `list` +Terraform resource block to set or update the subnet_ids field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list`): The value to set for the `subnet_ids` field. + + +### fn withTags + +```ts +withTags() +``` + +`aws.obj.withTags` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the tags field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags` field. + + +### fn withTimeouts + +```ts +withTimeouts() +``` + +`aws.obj.withTimeouts` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the timeouts field. + +This function will replace the map with the passed in `value`. If you wish to instead merge the +passed in value to the existing map, use the [aws.obj.withTimeoutsMixin](TODO) function. + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `timeouts` field. + + +### fn withTimeoutsMixin + +```ts +withTimeoutsMixin() +``` + +`aws.obj.withTimeoutsMixin` constructs a mixin object that can be merged into the `obj` +Terraform resource block to set or update the timeouts field. + +This function will merge the passed in value to the existing map. If you wish +to instead replace the entire map with the passed in `value`, use the [aws.obj.withTimeouts](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `timeouts` field. + + +### fn withVpcConnectionId + +```ts +withVpcConnectionId() +``` + +`aws.string.withVpcConnectionId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the vpc_connection_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `vpc_connection_id` field. + + +## obj timeouts + + + +### fn timeouts.new + +```ts +new() +``` + + +`aws.quicksight_vpc_connection.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts` +Terraform sub block. + + + +**Args**: + - `create` (`string`): Set the `create` field on the resulting object. When `null`, the `create` field will be omitted from the resulting object. + - `delete` (`string`): Set the `delete` field on the resulting object. When `null`, the `delete` field will be omitted from the resulting object. + - `update` (`string`): Set the `update` field on the resulting object. When `null`, the `update` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `timeouts` sub block.